# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
386267 | kshitij_sodani | Kralj (COCI16_kralj) | C++14 | 2079 ms | 26604 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#pragma GCC optimize("Ofast,unroll-loops")
#include <bits/stdc++.h>
using namespace std;
typedef long long llo;
#define mp make_pair
#define pb push_back
#define a first
#define b second
#define endl '\n'
int n;
int aa[500001];
int bb[500001];
int ind[500001];
int co[500001];
vector<int> ss[500001];
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>n;
for(int i=0;i<n;i++){
cin>>ind[i];
ind[i]--;
co[ind[i]]++;
}
for(int i=0;i<n;i++){
cin>>aa[i];
}
for(int i=0;i<n;i++){
cin>>bb[i];
}
for(int i=0;i<n;i++){
ss[ind[i]].pb(bb[i]);
}
for(int i=1;i<n;i++){
co[i]+=co[i-1];
}
pair<int,int> mi={n+1,-1};
for(int i=0;i<n;i++){
co[i]-=(i+1);
mi=min(mi,{co[i],i});
}
int xx=(mi.b+1%n);
set<int> cur;
int ans=0;
for(int i=0;i<n;i++){
for(auto j:ss[xx]){
cur.insert(j);
}
auto k=cur.upper_bound(aa[xx]);
if(k!=cur.end()){
ans++;
cur.erase(k);
}
else{
cur.erase(cur.begin());
}
xx=(xx+1);
if(xx==n){
xx=0;
}
}
cout<<ans<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |