# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
747505 | 2023-05-24T08:37:24 Z | vjudge1 | Kralj (COCI16_kralj) | C++17 | 583 ms | 51224 KB |
#include <bits/stdc++.h> #include <fstream> #define endl '\n' #define mod 1000007 #define INF 90000000000000000 //#define ll long long ///#define cin fin ///#define cout fout #define fi first #define se second using namespace std; double const EPS = 1e-14; ///ofstream fout("herding.out"); ///ifstream fin("herding.in"); const int Max = 5e5 + 5; vector<int> vv[Max]; int main() { ios_base::sync_with_stdio(0);cout.tie(0);cin.tie(0); int n; cin >> n; int a[n+1], p[n+1], v[n+1], cnt[n+1] = {}, start, ans = 0; set<int> st; for(int i = 1; i <= n; i++) st.insert(i); for(int i = 1; i <= n; i++) { cin >> a[i]; cnt[a[i]]++; } for(int i = 1; i <= n; i++) cin >> p[i]; for(int i = 1; i <= n; i++) { cin >> v[i]; vv[a[i]].push_back(v[i]);} /*for(int i = 1; i <= n; i++) { cout << i << ' ' << cnt[i] << 'k' << endl; for(auto j : vv[i]) { cout << j << ' '; } cout << 'j' << endl; }*/ for(int i = n; i >= 1; i--) { auto j = st.lower_bound(i); while(cnt[i]--) { if(j == st.end()) j = st.begin(); int x = *j; j++; if(st.size() == 1) start = x+1; st.erase(x); } } //cout << start << 's' << endl; for(int i = 0; i < n; i++) { for(auto j : vv[start]) { st.insert(j); } auto indx = st.upper_bound(p[start]); if(indx == st.end()) indx = st.begin(); else ans++; st.erase(*indx); start%= n; start++; } cout << ans; return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 265 ms | 40628 KB | Output isn't correct |
2 | Incorrect | 260 ms | 40108 KB | Output isn't correct |
3 | Incorrect | 342 ms | 46296 KB | Output isn't correct |
4 | Incorrect | 336 ms | 46904 KB | Output isn't correct |
5 | Correct | 486 ms | 45220 KB | Output is correct |
6 | Correct | 447 ms | 45480 KB | Output is correct |
7 | Correct | 553 ms | 49312 KB | Output is correct |
8 | Correct | 465 ms | 46436 KB | Output is correct |
9 | Correct | 583 ms | 51224 KB | Output is correct |
10 | Correct | 573 ms | 48748 KB | Output is correct |