
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<int,int> PII;
const int N = 110,M=2*N,mod=1e9+7;
int n,m;
int p[N],ti[N],d[N];
int start[N],ed[N];
bool st[N];
int h[N],e[M],ne[M],idx;
void add(int a,int b) {
e[idx]=b,ne[idx]=h[a],h[a]=idx++;
}
int dfs

最低0.47元/天 解锁文章
1675

被折叠的 条评论
为什么被折叠?



