mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 06:18:48 +00:00
P1983 车站分级
R41303290
This commit is contained in:
parent
d2b9aada55
commit
279c817d86
47
problem/P1983/P1983.cpp
Normal file
47
problem/P1983/P1983.cpp
Normal file
@ -0,0 +1,47 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int n, m, k, ans, l, a[1005], d[1005], c[1005][1005], f[1005];
|
||||
bool v[1005][1005];
|
||||
|
||||
int dfs(int x) {
|
||||
if (f[x]) {
|
||||
return f[x];
|
||||
}
|
||||
for (int i = 1; i <= c[x][0]; i++) {
|
||||
f[x] = max(f[x], dfs(c[x][i]));
|
||||
}
|
||||
return ++f[x];
|
||||
}
|
||||
|
||||
int main() {
|
||||
cin >> n >> m;
|
||||
for (int i = 1; i <= m; i++) {
|
||||
cin >> a[0];
|
||||
for (int j = 1; j <= a[0]; j++) {
|
||||
cin >> a[j];
|
||||
}
|
||||
l = 1;
|
||||
for (int j = a[1]; j < a[a[0]]; j++) {
|
||||
if (a[l] == j) {
|
||||
l++;
|
||||
}
|
||||
else {
|
||||
for (int k = 1; k <= a[0]; k++) {
|
||||
if (!v[a[k]][j]) {
|
||||
int t = a[k];
|
||||
c[t][0]++;
|
||||
c[t][c[t][0]] = j;
|
||||
v[t][j] = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
for (int i = 1; i <= n; i++) {
|
||||
ans = max(ans, dfs(i));
|
||||
}
|
||||
cout << ans << endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user