# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
747524 | vjudge1 | Kralj (COCI16_kralj) | C++17 | 2077 ms | 47308 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
#define ll long long
using namespace std;
const ll mod = 1000000007;
vector<int> v[500001];
set<int> s;
int ans;
signed main() {
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int n;
cin >> n;
int a[n], b[n], c[n], be[n] = {}, en[n] = {};
for(int i = 0; i < n; i++) {
cin >> a[i];
be[a[i] - 1]++;
}
int x = 0;
for(int i = 0; i < n; i++) {
if(be[i]) {
en[(i + be[i] - 1) % n]++;
if(i + be[i] - 1 >= n)
x++;
}
}
int st = 0;
for(int i = 0; i < n; i++) {
x += (be[i] > 0);
if(be[i] && x == 1)
st = i;
x -= en[i];
}
for(int i = 0; i < n; i++)
cin >> b[i];
for(int i = 0; i < n; i++) {
cin >> c[i];
v[a[i] - 1].push_back(c[i]);
}
for(int i = 0; i < n; i++) {
for(int j : v[st])
s.insert(j);
auto it = s.upper_bound(b[st]);
if(it != s.end()) {
ans++;
s.erase(it);
}
else
s.erase(s.begin());
st++;
st %= n;
}
cout << ans;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |