# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
747510 | vjudge1 | Kralj (COCI16_kralj) | C++17 | 741 ms | 49744 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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%n)+1;
st.erase(x);
}
}
//cout << start << 's' << endl;
for(int i = 0; i < n; i++) {
for(auto j : vv[start]) {
st.insert(j);
}
if(st.empty()) assert(false);
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;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |