-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeforces 1217D.cpp
More file actions
58 lines (54 loc) · 1.61 KB
/
Codeforces 1217D.cpp
File metadata and controls
58 lines (54 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include <bits/stdc++.h>
#define pb push_back
#define pf push_front
#define pob pop_back
#define fp first
#define sp second
#define mp make_pair
#define ins insert
#define uEdge(u, v) g[u].pb(v), g[v].pb(u)
#define uwEdge(u, v, w) g[u].pb({v, w}), g[v].pb({u, w})
#define dEdge(u, v) g[u].pb(v)
#define dEdger(u, v) rg[u].pb(v)
#define dwEdge(u, v, w) g[u].pb({v, w})
#define BOOST ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0)
#define minHeap int, vector<int>, greater<int>
#define MOD 1000000007
using namespace std;
typedef long long int lli;
typedef pair<int, int> pii;
lli nl, arr[0];
vector<pii> g[5010];
int c[5010], rs[5010];
bool cycle=0;
lli gcd(lli a, lli b){if(b == 0) return a;a%=b;return gcd(b, a);}
lli lcm(lli a, lli b){return (a*b)/gcd(a, b);}
int bs(lli sum){int l=0,r=nl-1,mid;while(l<=r){mid=(l+r)/2;if(arr[mid]==sum)return mid;if(arr[mid]<sum)l=mid+1;else r=mid-1;}return -1;}
lli modPow(lli a, lli b){a%=MOD;lli ans=1;while(b > 0){if(b & 1) ans=ans*a%MOD;a=a*a%MOD;b>>=1;}return ans;}
void DFS(int u){
rs[u]=1;
for(auto e : g[u]){
int v=e.fp, id=e.sp;
if(rs[v] == 0){
DFS(v);
c[id]=1;
}else if(rs[v] == 2){
c[id]=1;
}else{
cycle=1;
c[id]=2;
}
}
rs[u]=2;
}
int main(){
int n, m, u, v;
scanf("%d %d", &n, &m);
for(int i = 0; i < m; i++) scanf("%d %d", &u, &v), g[u].pb({v, i});
memset(c, 0, sizeof(c));
memset(rs, 0, sizeof(rs));
for(u = 1; u <= n; u++) if(rs[u] == 0) DFS(u);
printf("%d\n", (cycle)?2:1);
for(int i = 0; i < m; i++) printf("%d ", c[i]);
return 0;
}