# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
25850 | szawinis | Kralj (COCI16_kralj) | C++14 | 689 ms | 45696 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAX = (5e5)+1;
int n, start, ans, a[MAX], tmp[MAX], d[MAX];
vector<int> e[MAX];
bool mark[MAX];
multiset<int> st;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cin >> n;
for(int i = 0; i < n; i++) cin >> a[i], --a[i];
copy(a, a+n, tmp);
sort(tmp, tmp+n);
int curr = 0;
for(int x: tmp) {
if(mark[x]) curr = (curr+1)%n;
else curr = start = x;
mark[curr] = true;
}
for(int i = 0; i < n; i++) cin >> d[i];
for(int i = 0, x; i < n; i++) cin >> x, e[a[i]].push_back(x);
for(int z = 0, i = start; z < n; z++, i = (i+1)%n) {
for(int x: e[i]) st.insert(x);
auto it = st.lower_bound(d[i]);
if(it != st.end()) ans++, st.erase(it);
else st.erase(st.begin());
}
cout << ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |