#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)
#define per(i,n) for(int i=n-1;i>=0;i--)
#define rng(i,c,n) for(int i=c;i<n;i++)
#define fi first
#define se second
#define pb push_back
#define sz(a) (int)a.size()
#define vec(...) vector<__VA_ARGS__>
#define _3xaMC2q ios::sync_with_stdio(0),cin.tie(0)
typedef long long ll;
using pii=pair<int,int>;
using vi=vector<int>;
void print(){cout<<'\n';}
template<class h,class...t>
void print(const h&v,const t&...u){cout<<v<<' ',print(u...);}
//e
signed main(){
_3xaMC2q;
int n;
cin>>n;
vi a(n);
rep(i,n){
cin>>a[i];
}
rep(i,n){
a[i]-=1;
}
map<int,vi> mp;
rep(i,n){
mp[a[i]+i].pb(i);
}
vi dl(n);
rep(i,n){
if(i)dl[i]=dl[i-1];
if(a[i]==i){
dl[i]++;
}
}
vi dr(n);
per(i,n){
if(i<n-1)dr[i]=dr[i+1];
if(a[i]==i){
dr[i]++;
}
}
int ma=dr.back();
pii p={1,1};
rep(i,n){
int j=a[i];
if(i!=j){
int now=0;
if(i<j){
int v=i+a[i];
auto it=prev(lower_bound(mp[v].begin(),mp[v].end(),j));
now=(int)(it-mp[v].begin());
now-=(int)(lower_bound(mp[v].begin(),mp[v].end(),i)-mp[v].begin());
now+=1;
}else{
int v=i+a[i];
auto it=lower_bound(mp[v].begin(),mp[v].end(),j);
now=(int)(it-mp[v].begin());
now=(int)(lower_bound(mp[v].begin(),mp[v].end(),i)-mp[v].begin())-now;
now+=1;
}
now+=dl[min(i,j)];
now+=dr[max(i,j)];
if(ma<now){
ma=now;
p={i,j};
}
}
}
print(p.fi+1,p.se+1);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Failed |
1 ms |
212 KB |
Checker failed - contact admins or jury |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Failed |
2 ms |
468 KB |
Checker failed - contact admins or jury |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
724 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
8 ms |
1248 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Failed |
121 ms |
8624 KB |
Checker failed - contact admins or jury |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1081 ms |
45584 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
495 ms |
26792 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |