답안 #473184

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
473184 2021-09-15T09:54:29 Z Ahmed_Solyman Doktor (COCI17_doktor) C++14
20 / 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<<y<<" "<<x<<endl;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 204 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 204 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 13 ms 308 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1081 ms 204 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1087 ms 332 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1086 ms 332 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1097 ms 332 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1096 ms 972 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1089 ms 4044 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1085 ms 2508 KB Time limit exceeded
2 Halted 0 ms 0 KB -