#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
using namespace std;
#define endl '\n'
#define ll long long
#define pi pair<int, int>
#define f first
#define s second
const int mxn = 1000;
int n, k;
int dp[mxn][mxn][2];
vector<int> g[mxn];
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n >> k;
for(int i = 0, x; i < n; i++)
for(cin >> x; x; cin >> x)
for(int j = 0; j < 2; j++)
for(int l = 0; l < 2; l++){
g[l * n + x - 1].push_back(j * n + i);
}
int ret = 0, x = 0;
for(int i[2] = {2 * n - 1}; ~i[0]; i[0]--)
for(i[1] = i[0]; i[1] < 2 * n && i[1] - i[0] < n; i[1]++)
for(int j = 0; j < 2; j++){
int &dpc = dp[i[0]][i[1]][j];
if(dpc > ret) ret = dpc, x = i[j];
for(int l : g[i[j]])
for(int p = 0, ii[2]; p < 2; p++) if((l > i[p]) == p){
ii[p] = l, ii[!p] = i[!p];
dp[ii[0]][ii[1]][p] = max(dp[ii[0]][ii[1]][p], dpc + 1);
}
}
cout << ret << " " << (x % n + 1) << endl;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Incorrect |
1 ms |
492 KB |
Output isn't correct |
3 |
Incorrect |
1 ms |
620 KB |
Output isn't correct |
4 |
Incorrect |
1 ms |
748 KB |
Output isn't correct |
5 |
Correct |
2 ms |
876 KB |
Output is correct |
6 |
Incorrect |
2 ms |
876 KB |
Output isn't correct |
7 |
Correct |
7 ms |
1132 KB |
Output is correct |
8 |
Incorrect |
3 ms |
1132 KB |
Output isn't correct |
9 |
Correct |
9 ms |
1260 KB |
Output is correct |
10 |
Correct |
24 ms |
1516 KB |
Output is correct |
11 |
Correct |
13 ms |
1516 KB |
Output is correct |
12 |
Incorrect |
35 ms |
2668 KB |
Output isn't correct |
13 |
Incorrect |
63 ms |
4332 KB |
Output isn't correct |
14 |
Correct |
108 ms |
5868 KB |
Output is correct |
15 |
Incorrect |
397 ms |
8044 KB |
Output isn't correct |
16 |
Incorrect |
463 ms |
8556 KB |
Output isn't correct |
17 |
Incorrect |
362 ms |
8008 KB |
Output isn't correct |
18 |
Correct |
146 ms |
7404 KB |
Output is correct |
19 |
Incorrect |
583 ms |
8556 KB |
Output isn't correct |
20 |
Incorrect |
572 ms |
8300 KB |
Output isn't correct |