#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
int a[n], idx[1 + n];
for(int i = 0; i < n; i ++) {
cin >> a[i];
idx[a[i]] = i + 1;
}
int cnt[3 * n] = {};
for(int i = 1; i <= n; i ++)
cnt[idx[i] + i]++;
int pref[n + 1] = {};
for(int i = 0; i < n; i ++) {
pref[i + 1] = pref[i];
if(i + 1 == a[i])
pref[i + 1]++;
}
pair<int,int> ans = {1, 1};
int mx = 0;
for(int i = 1; i <= n; i ++)
{
int j = max(idx[i], i), k = min(idx[i], i);
int profit = cnt[i + idx[i]] - (pref[j] - pref[k - 1]);
if(abs(idx[i] - i) % 2 == 0)
{
int mid = (i + idx[i]) / 2;
if(a[mid - 1] == mid) profit++;
}
// cerr << "profit : " << profit << endl;
if(profit > mx)
{
mx = profit;
ans = {a[k - 1], a[j - 1]};
}
cnt[idx[i] + i] = 0;
}
cout << ans.first << ' ' << ans.second << endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
440 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
604 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
18 ms |
3036 KB |
Output is correct |
2 |
Correct |
17 ms |
3112 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
102 ms |
14932 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
66 ms |
8784 KB |
Output is correct |
2 |
Correct |
99 ms |
14944 KB |
Output is correct |