# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
780410 | 2023-07-12T08:51:51 Z | fatemetmhr | 곤돌라 (IOI14_gondola) | C++17 | 19 ms | 1724 KB |
// ~ Be Name Khoda ~ // #include "gondola.h" #include <bits/stdc++.h> //#pragma GCC optimize ("O3") //#pragma GCC target("avx2") //#pragma GCC optimize("unroll-loops,Ofast") using namespace std; typedef long long ll; #define pb push_back #define mp make_pair #define all(x) x.begin(), x.end() #define fi first #define se second const int maxn = 1e6 + 10; const int maxn5 = 5e5 + 10; const int maxnt = 1.2e6 + 10; const int maxn3 = 1e3 + 10; const int mod = 1e9 + 7; const ll inf = 1e18; vector <int> av, num; int valid(int n, int a[]) { for(int i =0 ; i < n; i++){ a[i]--; num.pb(a[i]); } sort(all(num)); num.resize(unique(all(num)) - num.begin()); if(num.size() != n) return 0; for(int i = 0; i < n; i++) if(a[i] < n) av.pb(i); int mnid = 0; if(av.empty()) return 1; for(int i = 0; i < av.size(); i++) if(a[av[i]] < a[av[mnid]]) mnid = i; int keep = mnid; //cout << av.size() << endl; for(int i = 0; i < av.size(); i++){ int nxt = mnid + 1; if(nxt == av.size()) nxt = 0; int u = av[mnid], v = av[nxt]; //cout << "here " << mnid << ' ' << nxt << ' ' << u << ' ' << v << endl; if((nxt != keep && a[u] > a[v]) || (n + a[v] - a[u]) % n != (v - u + n) % n) return 0; mnid = nxt; } return 1; } //---------------------- int replacement(int n, int a[], int ret[]) { vector <pair<int, int>> av; for(int i = 0; i < n; i++) a[i]--; int mx = 0, base = -1; for(int i = 0; i < n; i++){ if(a[i] > a[mx]) mx = i; if(a[i] < n) base = i; } //cout << a[mx] << ' ' << n << endl; if(a[mx] == n - 1) return 0; for(int i = 0; i < n; i++) if(a[i] >= n && i != mx) av.pb({a[i], i}); sort(all(av)); int ind = 0; int pt = 0; int mxx = a[mx]; a[mx] = (base == -1 ? mx + 1 : ((n + mx - base) + a[base]) % n); for(int x = n; x <= mxx; x++){ if(ind < av.size() && av[ind].fi == x){ ret[pt++] = 1 + (base == -1 ? av[ind].se + 1 : ((n + av[ind].se - base) + a[base]) % n); ind++; } else{ ret[pt++] = 1 + a[mx]; a[mx] = x; } //cout << pt << ' ' << x << endl; } return pt; } //---------------------- int countReplacement(int n, int inputSeq[]) { return -3; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Correct | 1 ms | 212 KB | Output is correct |
4 | Correct | 1 ms | 212 KB | Output is correct |
5 | Correct | 0 ms | 212 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 1 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Correct | 0 ms | 212 KB | Output is correct |
6 | Correct | 6 ms | 948 KB | Output is correct |
7 | Correct | 11 ms | 1232 KB | Output is correct |
8 | Correct | 8 ms | 1612 KB | Output is correct |
9 | Correct | 4 ms | 624 KB | Output is correct |
10 | Correct | 19 ms | 1664 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Correct | 1 ms | 212 KB | Output is correct |
6 | Correct | 7 ms | 976 KB | Output is correct |
7 | Correct | 11 ms | 1232 KB | Output is correct |
8 | Correct | 9 ms | 1528 KB | Output is correct |
9 | Correct | 5 ms | 624 KB | Output is correct |
10 | Correct | 13 ms | 1724 KB | Output is correct |
11 | Correct | 1 ms | 212 KB | Output is correct |
12 | Correct | 0 ms | 212 KB | Output is correct |
13 | Correct | 5 ms | 724 KB | Output is correct |
14 | Correct | 0 ms | 212 KB | Output is correct |
15 | Correct | 13 ms | 1484 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 216 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Correct | 0 ms | 212 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Correct | 0 ms | 212 KB | Output is correct |
6 | Correct | 0 ms | 212 KB | Output is correct |
7 | Correct | 1 ms | 212 KB | Output is correct |
8 | Incorrect | 1 ms | 340 KB | Output isn't correct |
9 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Correct | 0 ms | 272 KB | Output is correct |
6 | Correct | 1 ms | 212 KB | Output is correct |
7 | Correct | 1 ms | 304 KB | Output is correct |
8 | Incorrect | 1 ms | 308 KB | Output isn't correct |
9 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Integer -3 violates the range [0, 1000000008] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Integer -3 violates the range [0, 1000000008] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Integer -3 violates the range [0, 1000000008] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Integer -3 violates the range [0, 1000000008] |
2 | Halted | 0 ms | 0 KB | - |