#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define f1 first
#define s2 second
#define pb push_back
#define mp make_pair
#define ll long long
#define fri(a) freopen(a,"r",stdin);
#define fro(a) freopen(a,"w",stdout);
const int N=1e6+5;
ll n,a,cnt[N],ans,dizi[N],maxi,maxl,maxr,l,r;
vector<pair<int,int>>v[N];
int main(){
//fri("in.txt");
//fro("out.txt");
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>n;
for(int i=1;i<=n;i++){
cin>>a;
cnt[a+i]++;
v[a+i].pb({a,i});
dizi[i]=a;
if(cnt[a+i]>ans){
ans=cnt[a+i];
maxi=a+i;
}
}
for(auto j:v[maxi]){
l=min(j.f1,j.s2);
r=max(j.f1,j.s2);
if(maxl==0 && maxr==0){
maxl=l;
maxr=r;
}
else if(r-l>maxr-maxl){
maxl=l;
maxr=r;
}
}
cout<<dizi[maxl]<<" "<<dizi[maxr]<<endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
24 ms |
23800 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
24 ms |
23800 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
24 ms |
23800 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
25 ms |
23928 KB |
Output is correct |
2 |
Correct |
25 ms |
23972 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
26 ms |
24056 KB |
Output is correct |
2 |
Correct |
45 ms |
24012 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
25 ms |
24020 KB |
Output is correct |
2 |
Correct |
25 ms |
23928 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
28 ms |
24312 KB |
Output is correct |
2 |
Correct |
68 ms |
32088 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
55 ms |
28536 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
291 ms |
50224 KB |
Output is correct |
2 |
Correct |
96 ms |
35104 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
144 ms |
39308 KB |
Output is correct |
2 |
Correct |
130 ms |
53492 KB |
Output is correct |