比赛 CSP2023-J模拟赛 评测结果 AAAAAAAAAATTTTTTTTTT
题目名称 排列变换 最终得分 50
用户昵称 leaf 运行时间 10.402 s
代码语言 C++ 内存使用 13.36 MiB
提交时间 2023-10-18 18:57:31
显示代码纯文本
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int a[1000010],b[1000010];
  4. int main(){
  5. freopen("permutrans.in","r",stdin);
  6. freopen("permutrans.out","w",stdout);
  7. queue <int> q;
  8. int x,sum,num,maxn,get,n;
  9. cin>>n;
  10. for(int i = 0;i < n;i++){
  11. cin>>a[i];
  12. }
  13. for(int i = n-1;i >= 0;i--){
  14. q.push(a[i]);
  15. }
  16. num = 0;
  17. for(int i = 0;i < n;i++){
  18. sum = 0;
  19. for(int j = 0;j < n;j++){
  20. x = q.front();
  21. q.pop();
  22. q.push(x);
  23. if(x >= n-j){
  24. sum++;
  25. }
  26. }
  27. b[i] = num++;
  28. a[i] = sum;
  29. x = q.front();
  30. q.pop();
  31. q.push(x);
  32. }
  33. maxn = -1;
  34. for(int i = 0;i < n;i++){
  35. if(a[i] > maxn){
  36. maxn = a[i];
  37. get = i;
  38. }
  39. }
  40. cout<<maxn<<" "<<b[get];
  41. return 0;
  42. }
  43.