QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#426353#6329. Colorful Graphjames1BadCreeperTL 1ms4092kbC++171.8kb2024-05-31 08:24:432024-05-31 08:24:44

Judging History

你现在查看的是最新测评结果

  • [2024-05-31 08:24:44]
  • 评测
  • 测评结果:TL
  • 用时:1ms
  • 内存:4092kb
  • [2024-05-31 08:24:43]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
const int N = 7e3 + 5; 

int n, m; 
int A[N], B[N]; 
vector<int> G[N]; 

int dfn[N], low[N], num, col[N], cnt, st[N], tot, ins[N]; 
void tarjan(int x) {
    dfn[x] = low[x] = ++num; ins[st[++tot] = x] = 1; 
    for (int y : G[x]) 
        if (!dfn[y]) tarjan(y), low[x] = min(low[x], low[y]); 
        else if (ins[y]) low[x] = min(low[x], dfn[y]); 
    if (dfn[x] == low[x]) {
        ++cnt; int y; 
        do ins[y = st[tot--]] = 0, col[y] = cnt; while (y != x); 
    }
}

bitset<N> E[N]; 
bool vis[N]; 
int mch[N], c[N]; 

bool dfs(int x) {
    if (vis[x]) return 0; vis[x] = 1; 
    for (int y = E[x]._Find_first(); y != E[x].size(); y = E[x]._Find_next(y))
        if (!mch[y] || dfs(y)) return mch[y] = x, 1; 
    return 0; 
}

int main(void) {
    ios::sync_with_stdio(0); 
    cin >> n >> m; 
    for (int i = 1; i <= m; ++i) {
        cin >> A[i] >> B[i]; 
        G[A[i]].emplace_back(B[i]); 
    }
    for (int i = 1; i <= n; ++i)
        if (!dfn[i]) tarjan(i); 
    for (int i = 1; i <= m; ++i) if (col[A[i]] != col[B[i]])
        E[col[A[i]]][col[B[i]]] = 1; 
    for (int k = 1; k <= cnt; ++k)
        for (int i = 1; i <= cnt; ++i)
            if (E[i][k]) E[i] |= E[k]; 
    int ans = cnt; 
    for (int i = 1; i <= cnt; ++i) if (dfs(i)) {
        memset(vis, 0, sizeof vis); 
        --ans; 
    }
    int res = 0; 
    vector<int> son(cnt + 1); 
    for (int i = 1; i <= cnt; ++i) son[mch[i]] = i; 
    for (int i = 1; i <= cnt; ++i)
        if (mch[i] == 0) {
            c[i] = ++res; 
            int x = i; while (son[x]) c[x = son[x]] = res; 
        }
    for (int i = 1; i <= n; ++i) cout << c[col[i]] << " \n"[i == n]; 
    // cout << ans << "\n"; 
    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 3716kb

input:

5 5
1 4
2 3
1 3
2 5
5 1

output:

2 2 1 2 1

result:

ok AC

Test #2:

score: 0
Accepted
time: 1ms
memory: 4092kb

input:

5 7
1 2
2 1
4 3
5 1
5 4
4 1
4 5

output:

2 2 1 2 2

result:

ok AC

Test #3:

score: 0
Accepted
time: 1ms
memory: 3892kb

input:

8 6
6 1
3 4
3 6
2 3
4 1
6 4

output:

1 1 1 1 2 1 3 4

result:

ok AC

Test #4:

score: -100
Time Limit Exceeded

input:

7000 6999
4365 4296
2980 3141
6820 4995
4781 24
2416 5844
2940 2675
3293 2163
3853 5356
262 6706
1985 1497
5241 3803
353 1624
5838 4708
5452 3019
2029 6161
3849 4219
1095 1453
4268 4567
1184 1857
2911 3977
1662 2751
6353 6496
2002 6628
1407 4623
425 1331
4445 4277
1259 3165
4994 1044
2756 5788
5496 ...

output:


result: