#include <bits/stdc++.h>
#define FOR(x, a, b) for (int x = a; x <= b; ++x)
#define FOD(x, a, b) for (int x = a; x >= b; --x)
#define REP(x, a, b) for (int x = a; x < b; ++x)
#define DEBUG(X) { cout << #X << " = " << X << endl; }
#define PR(A, n) { cout << #A << " = "; FOR(_, 1, n) cout << A[_] << " "; cout << endl; }
#define PR0(A, n) { cout << #A << " = "; REP(_, 0, n) cout << A[_] << " "; cout << endl; }
#define BitCount(x) __builtin_popcount(x)
using namespace std;
typedef long long LL;
typedef pair <int, int> II;
const int N = 5e2 + 10;
const int INF = 0x3f3f3f3f;
int n, request;
int CL1[N][N], CL2[N][N];
int dp[N][N][2], f[N][N][2];
bool e[N][N];
bool fre[N][N][2];
vector <int> adj[N], rev[N];
int O;
int CCW(int i, int j, int k) {
if (i == k || j == k) return -1;
if (i < j) {
return (j < k && k < n) || (k < i);
} else return (j < k && k < i);
}
bool CMP1(int x, int y) {
return CCW(O, x, y);
}
bool CMP2(int x, int y) {
return !CCW(O, x, y);
}
int DP(int l, int r, int k) {
if (l == r) return dp[l][r][k] = 0;
int &ans = dp[l][r][k];
if (ans != -1) return ans;
ans = e[l][r];
REP(i, 0, adj[r].size()) {
int v = adj[r][i];
int d = CCW(l, r, v); if (d == -1) continue;
if (d == k) {
ans = max(ans, 1 + DP(l, v, k));
ans = max(ans, 1 + DP(r, v, k ^ 1));
}
}
for (int i = (l + 1) % n; i != r; i = (i + 1) % n)
if (CCW(l, r, i) == k)
ans = max(ans, DP(l, i, k));
return ans;
}
int Compute(int l, int r, int k) {
if (l == r) return 0;
int &ans = f[l][r][k];
if (ans != -1) return ans;
ans = e[l][r];
REP(i, 0, adj[l].size()) {
int u = adj[l][i];
if (CCW(l, r, u) == (k ^ 1))
ans = max(ans, 1 + Compute(u, r, k));
}
return ans;
}
void Init() {
memset(CL1, -1, sizeof CL1);
memset(CL2, -1, sizeof CL2);
REP(i, 0, n) {
O = i;
sort(rev[i].begin(), rev[i].end(), CMP1);
int p = 0;
for (int j = (i + 1) % n; j != i; j = (j + 1) % n) {
while (p < rev[i].size() && CCW(i, j, rev[i][p]) != 1) ++p;
if (p < rev[i].size()) CL1[i][j] = rev[i][p];
}
sort(rev[i].begin(), rev[i].end(), CMP2);
p = 0;
for (int j = (i - 1 + n) % n; j != i; j = (j - 1 + n) % n) {
while (p < rev[i].size() && CCW(i, j, rev[i][p]) != 0) ++p;
if (p < rev[i].size()) CL2[i][j] = rev[i][p];
}
}
}
int main() {
#ifdef LOCAL
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif // LOCAL
scanf("%d%d", &n, &request);
REP(u, 0, n) {
int v;
while (scanf("%d", &v) == 1) {
if (v == 0) break;
e[u][v - 1] = true;
adj[u].push_back(v - 1);
rev[v - 1].push_back(u);
}
}
Init();
memset(dp, -1, sizeof dp);
int ans = 0, num = -1;
REP(u, 0, n) {
REP(k, 0, adj[u].size()) {
int v = adj[u][k];
int can = DP(u, v, 0);
if (can > ans) {
ans = can;
num = u;
}
can = DP(u, v, 1);
if (can > ans) {
ans = can;
num = u;
}
}
}
if (request == 0) {
printf("%d\n%d", ans, num + 1);
return 0;
}
memset(f, -1, sizeof f);
REP(i, 0, n) {
for (int j = (i + 1) % n; j != i; j = (j + 1) % n) {
int x = Compute(i, j, 1); if (x == 0) continue;
int k = CL1[i][j]; if (k == -1) continue;
REP(p, 0, adj[j].size()) {
int v = adj[j][p];
if (CCW(j, k, v) == 1 && CCW(v, i, j) == 1) {
int can = 2 + x + max(DP(v, k, 1), DP(v, i, 0));
if (can > ans) {
ans = can;
num = k;
}
}
}
}
for (int j = (i - 1 + n) % n; j != i; j = (j - 1 + n) % n) {
int x = Compute(i, j, 0); if (x == 0) continue;
int k = CL2[i][j]; if (k == -1) continue;
REP(p, 0, adj[j].size()) {
int v = adj[j][p];
if (CCW(j, k, v) == 0 && CCW(v, i, j) == 0) {
int can = 2 + x + max(DP(v, i, 1), DP(v, k, 0));
if (can > ans) {
ans = can;
num = k;
}
}
}
}
}
printf("%d\n%d", ans, num + 1);
return 0;
}
Compilation message
race.cpp: In function 'int DP(int, int, int)':
race.cpp:5:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
#define REP(x, a, b) for (int x = a; x < b; ++x)
^
race.cpp:50:5: note: in expansion of macro 'REP'
REP(i, 0, adj[r].size()) {
^
race.cpp: In function 'int Compute(int, int, int)':
race.cpp:5:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
#define REP(x, a, b) for (int x = a; x < b; ++x)
^
race.cpp:69:5: note: in expansion of macro 'REP'
REP(i, 0, adj[l].size()) {
^
race.cpp: In function 'void Init()':
race.cpp:85:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while (p < rev[i].size() && CCW(i, j, rev[i][p]) != 1) ++p;
^
race.cpp:86:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (p < rev[i].size()) CL1[i][j] = rev[i][p];
^
race.cpp:91:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while (p < rev[i].size() && CCW(i, j, rev[i][p]) != 0) ++p;
^
race.cpp:92:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (p < rev[i].size()) CL2[i][j] = rev[i][p];
^
race.cpp: In function 'int main()':
race.cpp:5:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
#define REP(x, a, b) for (int x = a; x < b; ++x)
^
race.cpp:117:9: note: in expansion of macro 'REP'
REP(k, 0, adj[u].size()) {
^
race.cpp:5:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
#define REP(x, a, b) for (int x = a; x < b; ++x)
^
race.cpp:140:13: note: in expansion of macro 'REP'
REP(p, 0, adj[j].size()) {
^
race.cpp:5:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
#define REP(x, a, b) for (int x = a; x < b; ++x)
^
race.cpp:154:13: note: in expansion of macro 'REP'
REP(p, 0, adj[j].size()) {
^
race.cpp:103:32: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &n, &request);
^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
8900 KB |
Output isn't correct |
2 |
Incorrect |
0 ms |
8900 KB |
Output isn't correct |
3 |
Incorrect |
0 ms |
8900 KB |
Output isn't correct |
4 |
Incorrect |
0 ms |
8900 KB |
Output isn't correct |
5 |
Incorrect |
3 ms |
8900 KB |
Output isn't correct |
6 |
Incorrect |
6 ms |
8900 KB |
Output isn't correct |
7 |
Correct |
9 ms |
9032 KB |
Output is correct |
8 |
Incorrect |
9 ms |
8900 KB |
Output isn't correct |
9 |
Incorrect |
16 ms |
9032 KB |
Output isn't correct |
10 |
Correct |
36 ms |
9032 KB |
Output is correct |
11 |
Correct |
23 ms |
9032 KB |
Output is correct |
12 |
Incorrect |
199 ms |
9032 KB |
Output isn't correct |
13 |
Incorrect |
519 ms |
9032 KB |
Output isn't correct |
14 |
Incorrect |
929 ms |
9032 KB |
Output isn't correct |
15 |
Execution timed out |
3000 ms |
9296 KB |
Execution timed out |
16 |
Execution timed out |
3000 ms |
9428 KB |
Execution timed out |
17 |
Incorrect |
2669 ms |
9296 KB |
Output isn't correct |
18 |
Incorrect |
1709 ms |
9032 KB |
Output isn't correct |
19 |
Execution timed out |
3000 ms |
9428 KB |
Execution timed out |
20 |
Execution timed out |
3000 ms |
9428 KB |
Execution timed out |