답안 #473181

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
473181 2021-09-15T09:51:48 Z Ahmed_Solyman Doktor (COCI17_doktor) C++14
0 / 100
1000 ms 4044 KB
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);      cout.tie(0);
    ll n;cin>>n;
    vector<ll>arr(n);
    for(auto &i:arr)cin>>i;
    ll x=1,y=1;
    ll mx=0;
    for(ll i=0;i<n;i++){
        for(ll j=i+1;j<n;j++){
            reverse(arr.begin()+i,arr.begin()+j+1);
            ll cnt=0;
            for(ll k=i;k<=j;k++){
                cnt+=(arr[k]==k+1);
            }
            if(cnt>mx){
                x=arr[i];y=arr[j];
                mx=cnt;
            }
            reverse(arr.begin()+i,arr.begin()+j+1);
        }
    }
    cout<<x<<" "<<y<<endl;
}
# 결과 실행 시간 메모리 Grader output
1 Failed 0 ms 204 KB Checker failed - contact admins or jury
# 결과 실행 시간 메모리 Grader output
1 Failed 0 ms 204 KB Checker failed - contact admins or jury
# 결과 실행 시간 메모리 Grader output
1 Failed 14 ms 312 KB Checker failed - contact admins or jury
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1072 ms 204 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1089 ms 332 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1054 ms 332 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1082 ms 332 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1092 ms 972 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1087 ms 4044 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1093 ms 2508 KB Time limit exceeded
2 Halted 0 ms 0 KB -