# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1017341 | 2024-07-09T07:28:41 Z | simona1230 | 곤돌라 (IOI14_gondola) | C++17 | 32 ms | 4956 KB |
#include "gondola.h" #include <bits/stdc++.h> using namespace std; int n; int a[100001]; map<int,int> mp; bool check() { mp.clear(); int idx=-1; for(int i=0;i<n;i++) { if(mp[a[i]])return 0; mp[a[i]]++; if(a[i]<=n) { idx=i; } } if(idx==-1)return 1; int curr=a[idx]; for(int i=idx;i<n;i++) { if(a[i]<=n&&a[i]!=curr)return 0; curr++; if(curr==n+1)curr=1; } for(int i=0;i<idx;i++) { if(a[i]<=n&&a[i]!=curr)return 0; curr++; if(curr==n+1)curr=1; } return 1; } int valid(int N, int inputSeq[]) { n=N; for(int i=0;i<n;i++) a[i]=inputSeq[i]; //cout<<check()<<endl; return check(); } //---------------------- int req[100001]; void needed() { int idx=-1; for(int i=0;i<n;i++) { if(a[i]<=n) { idx=i; } } int curr=a[idx]; for(int i=idx;i<n;i++) { req[i]=curr; curr++; if(curr==n+1)curr=1; } for(int i=0;i<idx;i++) { req[i]=curr; curr++; if(curr==n+1)curr=1; } } bool cmp(int i,int j) { return a[i]<a[j]; } int replacement(int N, int gondolaSeq[], int replacementSeq[]) { n=N; for(int i=0;i<n;i++) a[i]=gondolaSeq[i]; needed(); vector<int> v; for(int i=0;i<n;i++) { if(a[i]!=req[i])v.push_back(i); } sort(v.begin(),v.end(),cmp); /*for(int i=0;i<n;i++) cout<<req[i]<<" "; cout<<endl;*/ int all=n+1; int cnt=0; for(int i=0;i<v.size();i++) { int idx=v[i]; //cout<<req[idx]<<endl; while(req[idx]!=a[idx]) { replacementSeq[cnt++]=req[idx]; req[idx]=all++; } } return cnt; } //---------------------- int countReplacement(int N, int inputSeq[]) { n=N; return -3; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 348 KB | Output is correct |
4 | Correct | 0 ms | 348 KB | Output is correct |
5 | Correct | 0 ms | 348 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 348 KB | Output is correct |
4 | Correct | 0 ms | 348 KB | Output is correct |
5 | Correct | 0 ms | 348 KB | Output is correct |
6 | Correct | 8 ms | 2396 KB | Output is correct |
7 | Correct | 6 ms | 1116 KB | Output is correct |
8 | Correct | 14 ms | 4188 KB | Output is correct |
9 | Correct | 4 ms | 1628 KB | Output is correct |
10 | Correct | 21 ms | 4956 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 348 KB | Output is correct |
4 | Correct | 0 ms | 348 KB | Output is correct |
5 | Correct | 0 ms | 348 KB | Output is correct |
6 | Correct | 9 ms | 2396 KB | Output is correct |
7 | Correct | 6 ms | 1116 KB | Output is correct |
8 | Correct | 17 ms | 4360 KB | Output is correct |
9 | Correct | 5 ms | 1628 KB | Output is correct |
10 | Correct | 21 ms | 4776 KB | Output is correct |
11 | Correct | 0 ms | 344 KB | Output is correct |
12 | Correct | 0 ms | 348 KB | Output is correct |
13 | Correct | 13 ms | 2352 KB | Output is correct |
14 | Correct | 0 ms | 348 KB | Output is correct |
15 | Correct | 32 ms | 4920 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 348 KB | Output is correct |
4 | Correct | 0 ms | 348 KB | Output is correct |
5 | Correct | 0 ms | 348 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 348 KB | Output is correct |
4 | Correct | 0 ms | 348 KB | Output is correct |
5 | Correct | 0 ms | 348 KB | Output is correct |
6 | Correct | 0 ms | 448 KB | Output is correct |
7 | Correct | 1 ms | 348 KB | Output is correct |
8 | Correct | 0 ms | 348 KB | Output is correct |
9 | Correct | 0 ms | 348 KB | Output is correct |
10 | Correct | 1 ms | 348 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 344 KB | Output is correct |
3 | Correct | 0 ms | 348 KB | Output is correct |
4 | Correct | 1 ms | 348 KB | Output is correct |
5 | Correct | 0 ms | 348 KB | Output is correct |
6 | Correct | 0 ms | 348 KB | Output is correct |
7 | Correct | 0 ms | 348 KB | Output is correct |
8 | Correct | 1 ms | 348 KB | Output is correct |
9 | Correct | 1 ms | 348 KB | Output is correct |
10 | Correct | 1 ms | 448 KB | Output is correct |
11 | Correct | 5 ms | 1880 KB | Output is correct |
12 | Correct | 6 ms | 1884 KB | Output is correct |
13 | Correct | 9 ms | 1764 KB | Output is correct |
14 | Correct | 5 ms | 1628 KB | Output is correct |
15 | Correct | 13 ms | 2584 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Integer -3 violates the range [0, 1000000008] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Integer -3 violates the range [0, 1000000008] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | Integer -3 violates the range [0, 1000000008] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Integer -3 violates the range [0, 1000000008] |
2 | Halted | 0 ms | 0 KB | - |