# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
780403 | 2023-07-12T08:49:24 Z | fatemetmhr | Gondola (IOI14_gondola) | C++17 | 19 ms | 1740 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; 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) 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 + 1; x <= mxx; x++){ if(ind < av.size() && av[ind].fi == x){ ret[pt++] = (base == -1 ? av[ind].se + 1 : ((n + av[ind].se - base) + a[base]) % n); ind++; } else{ ret[pt++] = a[mx]; a[mx] = x; } //cout << pt << ' ' << x << endl; } return pt; } //---------------------- int countReplacement(int n, int inputSeq[]) { return -3; }
Compilation message
# | Verdict | Execution time | Memory | 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 | 1 ms | 212 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 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 | 1 ms | 212 KB | Output is correct |
6 | Correct | 9 ms | 976 KB | Output is correct |
7 | Correct | 13 ms | 1304 KB | Output is correct |
8 | Correct | 10 ms | 1648 KB | Output is correct |
9 | Correct | 4 ms | 596 KB | Output is correct |
10 | Correct | 15 ms | 1740 KB | Output is correct |
# | Verdict | Execution time | Memory | 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 | 212 KB | Output is correct |
6 | Correct | 7 ms | 1000 KB | Output is correct |
7 | Correct | 13 ms | 1220 KB | Output is correct |
8 | Correct | 10 ms | 1552 KB | Output is correct |
9 | Correct | 4 ms | 596 KB | Output is correct |
10 | Correct | 14 ms | 1620 KB | Output is correct |
11 | Correct | 0 ms | 212 KB | Output is correct |
12 | Correct | 1 ms | 212 KB | Output is correct |
13 | Correct | 6 ms | 724 KB | Output is correct |
14 | Correct | 0 ms | 212 KB | Output is correct |
15 | Correct | 19 ms | 1504 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 312 KB | Output is correct |
3 | Correct | 1 ms | 308 KB | Output is correct |
4 | Correct | 1 ms | 212 KB | Output is correct |
5 | Correct | 1 ms | 308 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 308 KB | Output is correct |
3 | Correct | 1 ms | 212 KB | Output is correct |
4 | Correct | 1 ms | 212 KB | Output is correct |
5 | Correct | 1 ms | 212 KB | Output is correct |
6 | Incorrect | 0 ms | 212 KB | Integer 0 violates the range [1, 5] |
7 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 316 KB | Output is correct |
3 | Correct | 1 ms | 304 KB | Output is correct |
4 | Correct | 1 ms | 304 KB | Output is correct |
5 | Correct | 1 ms | 308 KB | Output is correct |
6 | Incorrect | 1 ms | 212 KB | Integer 0 violates the range [1, 5] |
7 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Integer -3 violates the range [0, 1000000008] |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Integer -3 violates the range [0, 1000000008] |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Integer -3 violates the range [0, 1000000008] |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Integer -3 violates the range [0, 1000000008] |
2 | Halted | 0 ms | 0 KB | - |