QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#671148#898. 二分图最大匹配QingyyxTL 306ms14908kbC++203.2kb2024-10-24 11:15:482024-10-24 11:15:50

Judging History

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

  • [2024-10-24 11:15:50]
  • 评测
  • 测评结果:TL
  • 用时:306ms
  • 内存:14908kb
  • [2024-10-24 11:15:48]
  • 提交

answer

#include <bits/stdc++.h>
#define ll long long
#define enl putchar('\n')
#define all(x) (x).begin(),(x).end()
#define debug(x) printf(" "#x":%d\n",x);
using namespace std;
const int MAXN = 2e5 + 5;
const int inf = 0x3f3f3f3f;
const ll INF = 0x3f3f3f3f3f3f3f3f;
const int mod = 998244353;
typedef pair<int, int> pii;
char buf[1 << 21], * p1 = buf, * p2 = buf, obuf[1 << 21], * o = obuf, of[35];
#define gc()(p1==p2&&(p2=(p1=buf)+fread(buf,1,1<<21,stdin),p1==p2)?EOF:*p1++)
inline ll qpow(ll a, ll n) { ll res = 1; while (n) { if (n & 1)res = res * a % mod; n >>= 1; a = a * a % mod; }return res; }
template <class T = int>inline T read() { T s = 0, f = 1; char c = gc(); for (; !isdigit(c); c = gc())if (c == '-')f = -1; for (; isdigit(c); c = gc())s = s * 10 + c - '0'; return s * f; }
inline void read(int* a, int n) { for (int i = 1; i <= n; ++i)a[i] = read(); }
inline int inal(char* s) { int n = 0; for (s[0] = gc(); !isalpha(s[0]); s[0] = gc()); for (; isalpha(s[n]); s[++n] = gc()); return s[n] = 0, n; }
inline int indi(char* s) { int n = 0; for (s[0] = gc(); !isdigit(s[0]); s[0] = gc()); for (; isdigit(s[n]); s[++n] = gc()); return s[n] = 0, n; }
inline void outd(auto* a, int n) { for (int i = 1; i <= n; ++i)printf("%d ", a[i]); enl; }
int n, m, q;
int L, R;

struct EG {
    int to, nxt;
}e[MAXN << 1];
int head[MAXN], etot;
inline void add(int u, int v) {
    e[etot] = EG {v, head[u]};
    head[u] = etot++;
}
void clear(int n = MAXN - 1) { memset(head + 1, -1, sizeof(int) * n); etot = 0; }
int px[MAXN], py[MAXN];
int pre[MAXN], vis[MAXN], TC;
void aug(int x) {
    while (x) {
        int tmp = px[pre[x]];
        px[pre[x]] = x;
        py[x] = pre[x];
        x = tmp;
    }
}
bool bfs(int x) {
    vector<int>vec;
    queue<int>que;
    que.push(x);
    while (!que.empty()) {
        int u = que.front();
        que.pop();
        for (int i = head[u]; ~i; i = e[i].nxt) {
            int v = e[i].to;
            if (vis[v] == TC)continue;
            vis[v] = TC;
            pre[v] = u;
            vec.push_back(v);
            if (!py[v]) {
                aug(v);
                for (auto x : vec) pre[x] = 0;
                return 1;
            } else {
                que.push(py[v]);
            }
        }
    }
    for (auto x : vec) pre[x] = 0;
    return 0;
}

void solve() {
    L = read(), R = read(), m = read();
    clear(max(L, R));
    for (int i = 1; i <= m; ++i) {
        int u = read() + 1, v = read() + 1;
        add(u, v);
    }
    int ans = 0;
    for (int i = 1; i <= L; i++) {
        ++TC;
        ans += bfs(i);
    }
    printf("%d\n", ans);
    for (int i = 1; i <= L; ++i)
        if (px[i])printf("%d %d\n", i - 1, px[i] - 1);
}
signed main(signed argc, char const* argv[]) {
    clock_t c1 = clock();
#ifdef LOCAL
    freopen("in.in", "r", stdin);
    freopen("out.out", "w", stdout);
#endif
    //=============================================================
    int TxT = 1;
    // TxT = read();
    while (TxT--)
        solve();
    //=============================================================
#ifdef LOCAL
    end :
    cerr << "Time Used:" << clock() - c1 << "ms" << endl;
#endif
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 35ms
memory: 14288kb

input:

100000 100000 200000
78474 45795
32144 46392
92549 13903
73460 34144
96460 92850
56318 77066
77529 84436
76342 51542
77506 99268
76410 89381
1778 61392
43607 96135
84268 74827
14857 35966
32084 94908
19876 174
1481 94390
12423 55019
64368 92587
81295 7902
25432 46032
36293 61128
73555 84836
8418 102...

output:

100000
0 54731
1 26066
2 89637
3 1717
4 68505
5 28330
6 55261
7 34703
8 42170
9 23249
10 90437
11 69580
12 72086
13 47593
14 29944
15 87183
16 763
17 2814
18 46044
19 75228
20 11487
21 72701
22 60611
23 36775
24 66081
25 45592
26 3321
27 88211
28 71467
29 47516
30 55528
31 83162
32 46298
33 26459
34...

result:

ok OK

Test #2:

score: 0
Accepted
time: 37ms
memory: 14692kb

input:

100000 100000 200000
56815 52516
2576 76201
40377 1757
50463 66496
15833 50879
9828 16330
80692 9962
51095 17590
15870 35191
91301 65509
90774 57492
11890 8966
44786 41895
3386 35478
93470 47452
84803 93635
90745 34876
18201 38717
7472 34257
36580 19532
13248 27524
6441 69869
8821 61870
94536 67713
...

output:

100000
0 48685
1 54562
2 96282
3 43660
4 56572
5 72097
6 31793
7 12360
8 3023
9 14651
10 80163
11 12379
12 597
13 39076
14 77674
15 94527
16 85130
17 23849
18 35846
19 78842
20 26940
21 93329
22 69417
23 49345
24 65215
25 36147
26 45930
27 84619
28 76814
29 412
30 10858
31 38186
32 60852
33 64942
34...

result:

ok OK

Test #3:

score: 0
Accepted
time: 0ms
memory: 12008kb

input:

4 4 7
1 1
2 2
0 0
3 1
1 2
2 0
3 2

output:

3
0 0
1 1
2 2

result:

ok OK

Test #4:

score: 0
Accepted
time: 16ms
memory: 14908kb

input:

100000 100000 199999
25370 25370
85964 85963
415 415
16796 16796
12437 12437
45409 45408
63005 63004
22155 22155
87828 87827
84013 84013
37307 37307
72324 72324
83703 83703
55390 55389
6780 6779
78090 78090
9375 9375
82192 82192
74694 74694
49841 49841
15798 15798
69855 69854
82948 82947
97389 97388...

output:

100000
0 0
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10
11 11
12 12
13 13
14 14
15 15
16 16
17 17
18 18
19 19
20 20
21 21
22 22
23 23
24 24
25 25
26 26
27 27
28 28
29 29
30 30
31 31
32 32
33 33
34 34
35 35
36 36
37 37
38 38
39 39
40 40
41 41
42 42
43 43
44 44
45 45
46 46
47 47
48 48
49 49
50 50
51 51
5...

result:

ok OK

Test #5:

score: 0
Accepted
time: 17ms
memory: 14184kb

input:

100000 100000 199999
59469 59469
76773 76772
89516 89516
87040 87040
90184 90184
83075 83075
61454 61454
33615 33615
85794 85793
92072 92071
49725 49725
63842 63841
99247 99247
24121 24121
29552 29551
73533 73533
75845 75845
27029 27028
84418 84418
26636 26636
10100 10099
75013 75012
67341 67341
756...

output:

100000
0 0
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10
11 11
12 12
13 13
14 14
15 15
16 16
17 17
18 18
19 19
20 20
21 21
22 22
23 23
24 24
25 25
26 26
27 27
28 28
29 29
30 30
31 31
32 32
33 33
34 34
35 35
36 36
37 37
38 38
39 39
40 40
41 41
42 42
43 43
44 44
45 45
46 46
47 47
48 48
49 49
50 50
51 51
5...

result:

ok OK

Test #6:

score: 0
Accepted
time: 33ms
memory: 14288kb

input:

100000 100000 199999
22284 45795
32144 44930
58734 13903
57136 34144
7548 92850
56318 11874
77529 85278
27039 51542
77506 94257
69265 89381
67073 61392
86159 96135
83227 74827
14857 19500
32084 73639
86884 174
27268 94390
20020 55019
45357 92587
17833 7902
55801 46032
36293 46557
73555 13746
8418 88...

output:

100000
0 2401
1 18084
2 59700
3 99457
4 33291
5 38417
6 97167
7 64564
8 28471
9 68817
10 62095
11 31609
12 57675
13 28348
14 2599
15 99163
16 58923
17 17629
18 3975
19 53920
20 25930
21 4206
22 49364
23 55768
24 40573
25 87244
26 12858
27 39608
28 42953
29 68974
30 89214
31 48329
32 3980
33 50041
34...

result:

ok OK

Test #7:

score: 0
Accepted
time: 42ms
memory: 14692kb

input:

100000 100000 199999
4850 52516
2576 29250
69016 1757
85854 66496
48300 50879
83741 16330
98931 9962
38730 17590
15870 13960
91301 97595
81692 57492
11890 59332
5076 41895
23574 35478
93470 65245
61976 93635
96140 34876
18201 35366
64057 34257
25588 19532
13248 91003
6441 83448
99191 61870
94536 169...

output:

100000
0 39785
1 26716
2 6189
3 33390
4 12388
5 6804
6 66264
7 36155
8 25212
9 73214
10 29914
11 87445
12 9428
13 44486
14 83326
15 61240
16 63409
17 15512
18 77732
19 17216
20 39374
21 7319
22 36983
23 45568
24 34087
25 31512
26 83824
27 73657
28 80853
29 58211
30 14867
31 17935
32 49451
33 91463
3...

result:

ok OK

Test #8:

score: 0
Accepted
time: 11ms
memory: 13796kb

input:

61217 61379 199943
14003 13749
24504 24347
30371 30219
27661 27461
33247 33397
38346 38157
17300 16944
50476 50643
56488 56551
46690 46949
21355 21288
3899 3659
24330 24165
8806 8305
40957 40994
15089 14813
20397 20389
30864 30800
33635 33755
20900 20808
55447 55499
4335 4040
36726 36551
16496 16095...

output:

37154
0 0
11 1
12 6
13 13
14 8
15 11
16 4
17 2
18 5
19 12
20 9
21 10
22 14
23 15
30 32
31 26
32 24
33 29
34 28
35 20
36 46
39 47
41 44
42 38
44 40
45 39
49 55
50 53
51 51
52 52
53 54
64 60
66 57
70 61
71 63
79 73
80 70
81 69
83 71
84 74
85 68
87 78
88 77
89 76
90 75
93 80
101 79
107 85
109 96
111 95...

result:

ok OK

Test #9:

score: 0
Accepted
time: 16ms
memory: 14632kb

input:

61352 60513 199960
2270 2419
38842 39327
48788 48843
2493 2635
40183 40659
59754 59010
48980 48993
52508 52276
12892 13195
33811 34565
40260 40700
2116 2289
11742 12133
29439 29942
4256 4392
51422 51263
44695 44994
21600 22165
21666 22208
26472 26785
49979 50038
12099 12515
10539 10816
32736 33401
3...

output:

37442
0 2
1 4
2 10
3 8
4 7
5 1
7 20
8 22
9 13
10 18
11 26
12 24
13 25
14 30
15 33
17 37
18 36
19 38
20 34
21 35
32 47
33 49
34 53
35 40
36 63
37 68
38 75
39 74
40 71
41 76
42 72
43 69
44 73
45 70
52 85
53 77
54 80
55 86
56 82
57 87
58 83
59 84
60 78
61 88
62 81
63 79
64 97
65 98
66 100
67 90
68 101
...

result:

ok OK

Test #10:

score: 0
Accepted
time: 15ms
memory: 14860kb

input:

100000 100000 199998
0 13805
0 33641
1 9259
1 62738
1 70691
1 78118
2 41148
3 15765
3 50059
4 96644
5 91521
6 32562
8 2550
8 11396
8 48345
9 14639
9 51057
9 79293
9 92374
10 64733
10 67020
11 7764
11 46822
11 60302
12 8749
12 27869
12 69569
12 71510
13 35684
13 42579
13 82023
14 34778
15 1975
15 693...

output:

78404
0 13805
1 78118
2 41148
3 15765
4 96644
5 91521
6 32562
8 48345
9 79293
10 67020
11 46822
12 71510
13 42579
14 34778
15 69322
16 57308
17 6162
18 52651
19 64579
21 24593
22 97997
23 77417
24 47998
25 24157
27 53506
28 67932
29 65316
30 31954
31 19608
32 71996
34 98186
35 72885
36 89653
37 5777...

result:

ok OK

Test #11:

score: 0
Accepted
time: 20ms
memory: 14676kb

input:

100000 100000 199998
0 28389
0 41333
0 66666
1 5984
1 15912
3 63753
3 77735
4 25015
4 30450
4 90212
5 66978
5 98909
6 63465
6 78227
6 78950
6 85422
7 1743
7 1868
7 55171
8 37582
9 26491
9 82984
10 29229
10 29811
10 33063
11 10609
11 48601
11 73298
11 95658
12 29064
12 50261
12 63186
12 68616
13 8683...

output:

78497
0 41333
1 5984
3 63753
4 30450
5 98909
6 78227
7 1868
8 37582
9 26491
10 33063
11 95658
12 68616
13 86837
14 61234
15 77990
16 16525
17 23926
18 93717
19 32559
21 15495
23 56994
24 34533
25 47612
26 36458
27 33773
28 89481
29 83766
30 28313
31 82347
32 28749
33 96004
34 35265
35 82877
36 24476...

result:

ok OK

Test #12:

score: 0
Accepted
time: 20ms
memory: 14328kb

input:

100000 100000 199997
0 4357
0 35525
0 51857
1 57468
1 94927
1 96004
3 75468
4 20202
4 37102
5 32207
6 8677
6 16775
6 46813
6 75640
7 30806
8 4099
8 26454
8 49376
8 55539
8 67032
9 82362
10 11387
10 33778
10 35352
10 50533
10 54706
11 44868
11 59104
14 80528
14 90600
14 99752
15 10954
15 80519
15 873...

output:

78379
0 4357
1 57468
3 75468
4 20202
5 32207
6 75640
7 30806
8 26454
9 82362
10 54706
11 59104
14 80528
15 87340
16 32645
17 88162
18 52112
19 49350
20 58977
21 31926
22 50244
23 5726
24 92464
26 52648
27 57836
28 96888
30 50525
31 76950
32 73647
33 971
34 36879
35 81872
36 660
37 65791
38 55672
39 ...

result:

ok OK

Test #13:

score: 0
Accepted
time: 0ms
memory: 12628kb

input:

17707 77101 11866
4 29611
4 62770
4 65605
5 22177
5 57724
14 59632
14 68649
17 9622
18 9221
18 43355
29 19612
30 44428
32 51277
34 53196
35 20939
37 68142
38 34663
38 36432
39 71932
40 62217
41 40291
43 53542
44 22018
44 60539
47 56819
47 76081
49 18326
50 52876
50 58006
51 64709
51 66011
52 26751
5...

output:

8453
4 65605
5 57724
14 68649
17 9622
18 43355
29 19612
30 44428
32 51277
34 53196
35 20939
37 68142
38 36432
39 71932
40 62217
41 40291
43 53542
44 60539
47 76081
49 18326
50 58006
51 66011
52 45116
54 5453
55 72966
57 8366
58 70074
59 16851
60 59385
62 16210
67 18050
68 27089
70 47489
71 41622
73 ...

result:

ok OK

Test #14:

score: 0
Accepted
time: 306ms
memory: 14196kb

input:

69830 19691 148749
0 8565
0 12093
0 12608
2 777
2 8771
3 6106
3 7526
3 10596
3 12199
3 14674
3 17676
4 4643
4 15016
4 17194
6 6948
7 1743
7 7750
8 2305
8 4814
9 4468
9 12246
9 16763
9 17448
10 295
10 12043
10 13971
11 168
11 4447
11 7762
11 15833
11 15993
12 1914
12 3080
12 5649
14 29
15 1675
15 464...

output:

19684
0 12093
2 8771
3 10596
4 15016
6 6948
7 1743
8 4814
9 4468
10 12043
11 15993
12 3080
14 29
15 12012
16 10804
17 10302
18 4512
20 5430
21 2932
22 1202
23 5092
24 3698
25 95
26 14930
27 7922
29 6870
30 6797
31 16811
32 1090
33 3605
34 12333
36 5083
37 11224
38 3202
40 6932
41 18160
42 15886
43 1...

result:

ok OK

Test #15:

score: 0
Accepted
time: 7ms
memory: 11944kb

input:

53336 61958 92222
0 23730
0 34075
0 35525
1 30468
1 61015
3 24509
3 36308
4 8061
4 45185
4 54435
5 32530
5 59288
6 10104
6 56657
10 2203
10 3106
10 33778
11 29821
11 59104
12 27897
14 18850
15 13472
15 14983
15 37131
15 40140
15 49346
15 59901
16 12876
16 32645
18 26571
21 60370
22 39980
22 41044
22...

output:

40194
0 34075
1 61015
3 24509
4 45185
5 59288
6 56657
10 2203
11 29821
12 27897
14 18850
15 49346
16 12876
18 26571
21 60370
22 61185
23 59945
24 17646
25 7805
26 55641
27 56720
28 37215
29 61757
30 51900
32 18385
33 14342
34 19082
35 30280
36 24688
37 59801
39 53021
40 21280
42 54903
43 28881
44 12...

result:

ok OK

Test #16:

score: -100
Time Limit Exceeded

input:

36033 25839 130375
0 1577
0 16725
0 22301
0 24558
1 5977
1 6738
1 9339
1 25294
2 762
2 6992
2 10207
2 14608
3 3
3 3002
3 25047
4 12402
4 13815
4 15862
5 4727
6 6680
6 8345
6 10057
6 13352
6 17084
7 9878
7 17893
7 21628
7 23892
8 2601
8 13004
8 19099
8 23028
9 2307
9 13011
9 15776
9 22642
11 7388
11 ...

output:


result: