# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
195604 |
2020-01-16T15:41:52 Z |
stefdasca |
Kralj (COCI16_kralj) |
C++14 |
|
825 ms |
35380 KB |
#include<bits/stdc++.h>
#define god dimasi5eks
#pragma GCC optimize("O3")
#define fi first
#define se second
#define pb push_back
#define pf push_front
#define mod 1000000007
#define dancila 3.14159265359
#define eps 1e-9
// #define fisier 1
using namespace std;
typedef long long ll;
int n, rival[500002];
int frq[500002], sp[1000002];
vector<int> enemy[500002];
int skill[500002], skill2[500002];
int ans = 0;
vector<int> va, vb;
int solve(int st)
{
int ss = 0;
int dif = 0;
for(int i = st; i <= st + n - 1; ++i)
{
dif--;
int truepos = i;
if(truepos > n)
truepos -= n;
va.pb(skill[truepos]);
for(int j = 0; j < enemy[truepos].size(); ++j)
vb.pb(skill2[enemy[truepos][j]]), ++dif;
if(dif == 0)
{
sort(va.begin(), va.end());
sort(vb.begin(), vb.end());
int pa = 0;
for(int j = 0; j < va.size(); ++j)
{
while(pa < vb.size() && vb[pa] < va[j])
++pa;
if(pa < vb.size())
++ss, ++pa;
else
break;
}
va.clear();
vb.clear();
// if(ss + (st + n - 1) - i <= ans)
// return ss;
}
}
return ss;
}
int main()
{
#ifdef fisier
ifstream f("input.in");
ofstream g("output.out");
#endif
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n;
for(int i = 1; i <= n; ++i)
cin >> rival[i], ++frq[rival[i]], enemy[rival[i]].pb(i);
for(int i = 1; i <= n; ++i)
cin >> skill[i];
for(int i = 1; i <= n; ++i)
cin >> skill2[i];
deque<int> mn;
for(int i = 1; i < 2 * n; ++i)
{
sp[i] = sp[i-1] + frq[i - n * (i > n)] - 1;
if(i > n && !mn.empty() && mn[0] == i - n)
mn.pop_front();
while(!mn.empty() && sp[i] < sp[mn.back()])
mn.pop_back();
mn.pb(i);
if(i >= n && sp[mn[0]] >= sp[i - n])
ans = max(ans, solve(i - n + 1));
}
cout << ans;
return 0;
}
Compilation message
kralj.cpp: In function 'int solve(int)':
kralj.cpp:39:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j = 0; j < enemy[truepos].size(); ++j)
~~^~~~~~~~~~~~~~~~~~~~~~~
kralj.cpp:46:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j = 0; j < va.size(); ++j)
~~^~~~~~~~~~~
kralj.cpp:48:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while(pa < vb.size() && vb[pa] < va[j])
~~~^~~~~~~~~~~
kralj.cpp:50:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(pa < vb.size())
~~~^~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
253 ms |
25604 KB |
Output is correct |
2 |
Correct |
245 ms |
25220 KB |
Output is correct |
3 |
Correct |
297 ms |
28436 KB |
Output is correct |
4 |
Correct |
296 ms |
28756 KB |
Output is correct |
5 |
Incorrect |
411 ms |
30500 KB |
Output isn't correct |
6 |
Incorrect |
438 ms |
30932 KB |
Output isn't correct |
7 |
Incorrect |
825 ms |
34220 KB |
Output isn't correct |
8 |
Incorrect |
541 ms |
32864 KB |
Output isn't correct |
9 |
Incorrect |
669 ms |
35380 KB |
Output isn't correct |
10 |
Incorrect |
480 ms |
32840 KB |
Output isn't correct |