QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#476215#415. 最小生成树NOI_AK_ME#100 ✓60ms11792kbC++142.5kb2024-07-13 18:14:252024-07-13 18:14:25

Judging History

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

  • [2024-07-13 18:14:25]
  • 评测
  • 测评结果:100
  • 用时:60ms
  • 内存:11792kb
  • [2024-07-13 18:14:25]
  • 提交

answer

#include <iostream>
#include <algorithm>

typedef long long ll;
typedef double lf;

struct IO
{
    #define MAXSIZE (1 << 20)
    #define isdigit(x) (x >= '0' && x <= '9')
    char buf[MAXSIZE], *p1, *p2;
    char pbuf[MAXSIZE], *pp;
    #if DEBUG
    #else
    IO() : p1(buf), p2(buf), pp(pbuf) {}
    ~IO() {fwrite(pbuf, 1, pp - pbuf, stdout);}
    #endif
    #define gc() (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, MAXSIZE, stdin), p1 == p2) ? ' ' : *p1++)
    #define blank(x) (x == ' ' || x == '\n' || x == '\r' || x == '\t')

    template <typename T>
    void Read(T &x)
    {
        #if DEBUG
        std::cin >> x;
        #else
        bool sign = 0; char ch = gc(); x = 0;
        for (; !isdigit(ch); ch = gc())
            if (ch == '-') sign = 1;
        for (; isdigit(ch); ch = gc()) x = x * 10 + (ch ^ 48);
        if (sign) x = -x;
        #endif
    }
    void Read(char *s)
    {
        #if DEBUG
        std::cin >> s;
        #else
        char ch = gc();
        for (; blank(ch); ch = gc());
        for (; !blank(ch); ch = gc()) *s++ = ch;
        *s = 0;
        #endif
    }
    void Read(char &c) {for (c = gc(); blank(c); c = gc());}

    void Push(const char &c)
    {
        #if DEBUG
        putchar(c);
        #else
        if (pp - pbuf == MAXSIZE) fwrite(pbuf, 1, MAXSIZE, stdout), pp = pbuf;
        *pp++ = c;
        #endif
    }
    template <typename T>
    void Write(T x)
    {
        if (x < 0) x = -x, Push('-');
        static T sta[35];
        int top = 0;
        do sta[top++] = x % 10, x /= 10; while (x);
        while (top) Push(sta[--top] ^ 48);
    }
    template <typename T>
    void Write(T x, char lst) {Write(x), Push(lst);}
} IO;
#define Read(x) IO.Read(x)
#define Write(x, y) IO.Write(x, y)
#define Put(x) IO.Push(x)

using namespace std;

const int MAXN = 2e5 + 10, MAXM = 5e5 + 10;

int n, m;

struct Edge
{
    int u, v, w;
    bool operator < (const Edge u) const {return w < u.w;}
}e[MAXM];

int fa[MAXN];
inline int Find(int k) {return k == fa[k] ? k : fa[k] = Find(fa[k]);}

int main()
{
    ios::sync_with_stdio(0), cin.tie(0);
    Read(n), Read(m);
    for (int i = 1; i <= m; i++) Read(e[i].u), Read(e[i].v), Read(e[i].w);
    sort(e + 1, e + m + 1);
    for (int i = 1; i <= n; i++) fa[i] = i;
    ll ans = 0;
    for (int i = 1; i <= m; i++)
    {
        int u = Find(e[i].u), v = Find(e[i].v);
        if (u == v) continue;
        fa[u] = v, ans += e[i].w;
    }
    cout << ans << '\n';
}

詳細信息

Test #1:

score: 10
Accepted
time: 1ms
memory: 5608kb

input:

1 0

output:

0

result:

ok answer is '0'

Test #2:

score: 10
Accepted
time: 44ms
memory: 10852kb

input:

1 500000
1 1 436085873
1 1 289134331
1 1 95168426
1 1 809912668
1 1 912905316
1 1 51427205
1 1 808052925
1 1 168547991
1 1 469573116
1 1 7523372
1 1 700424384
1 1 329491017
1 1 886380039
1 1 92596215
1 1 870407506
1 1 420928567
1 1 29439913
1 1 851970613
1 1 595343843
1 1 150074451
1 1 981248098
1 1...

output:

0

result:

ok answer is '0'

Test #3:

score: 10
Accepted
time: 1ms
memory: 7720kb

input:

1049 1095
37 1027 185663189
439 923 842401821
92 68 172561838
108 320 929023969
537 284 451497914
161 836 18296000
101 14 582350247
82 947 633276668
555 731 321285985
282 946 133823187
549 982 59411620
19 151 982845654
961 22 185979994
201 958 42654715
178 446 121754463
100 386 87537747
492 486 2228...

output:

459312924580

result:

ok answer is '459312924580'

Test #4:

score: 10
Accepted
time: 49ms
memory: 10692kb

input:

1677 500000
1010 1055 334171722
32 548 496908773
1662 273 215127528
1596 969 799111789
993 895 816193284
335 56 975688725
1537 1674 694838017
512 1006 84989138
487 1094 77423013
1131 522 260247889
32 1581 652804125
1472 1609 861174323
1083 230 236457705
1009 593 692730522
709 284 647880265
936 1598 ...

output:

3426870407

result:

ok answer is '3426870407'

Test #5:

score: 10
Accepted
time: 40ms
memory: 11792kb

input:

4782 500000
401 2704 143282494
408 742 221495274
2487 2740 328112333
1471 3347 678117943
2369 3844 94084087
4137 629 771103
1506 2976 377332399
3856 3529 15354521
977 1747 267860558
2561 1837 234002816
1947 1191 447985398
2575 3486 210906740
321 1319 879712756
3660 3019 926744290
4492 528 110850246
...

output:

20391912348

result:

ok answer is '20391912348'

Test #6:

score: 10
Accepted
time: 26ms
memory: 10860kb

input:

100000 250000
11249 63248 716981925
77587 45081 715237577
40869 43888 384028427
68447 21259 718879057
15416 4835 542698454
86984 39250 200243926
38485 9822 321829618
68650 80338 208779180
93995 71720 970100731
62306 65602 758670337
12962 93202 405549936
11239 70788 481995017
65169 11656 137255256
93...

output:

19768912676568

result:

ok answer is '19768912676568'

Test #7:

score: 10
Accepted
time: 25ms
memory: 9328kb

input:

100000 250000
58087 98694 276928916
81020 20563 474360924
54330 72482 965233532
69316 62625 693679792
68391 25019 626212979
66635 9065 208396713
18722 31967 29636156
18804 17430 126344131
52091 61058 813889563
22524 92717 616323226
91592 59352 7003125
39568 15009 745751969
59457 33731 34864625
3185 ...

output:

19671766809300

result:

ok answer is '19671766809300'

Test #8:

score: 10
Accepted
time: 22ms
memory: 11316kb

input:

200000 199999
65210 94695 20344717
27677 60426 947830254
44160 166001 68537440
144553 10242 174779136
72796 113802 266364597
1858 24797 628448494
194099 76945 666582594
133683 17237 128244232
152149 91422 110103130
150169 10041 739399998
136455 75250 7894691
81174 102926 26871471
27780 63438 7883747...

output:

94124014988825

result:

ok answer is '94124014988825'

Test #9:

score: 10
Accepted
time: 58ms
memory: 11372kb

input:

200000 500000
46671 50310 339946279
111950 44341 976219244
183028 30375 283623377
119684 483 278812425
123223 173434 86847632
53396 67926 343986583
195715 85791 872435965
51759 67385 324694963
132645 146330 74109089
142363 58800 508205119
151247 105471 160455427
97528 133772 68416120
33125 33151 102...

output:

39818560453301

result:

ok answer is '39818560453301'

Test #10:

score: 10
Accepted
time: 60ms
memory: 11316kb

input:

200000 500000
45588 17449 500297001
167443 90625 840063438
184162 31916 123322602
75130 105595 80124915
4990 23835 842648585
198193 138933 377398791
61179 68315 899014505
170138 8312 214877618
130847 183955 648135341
186493 178082 135732043
34104 128022 298311436
180739 90096 241294500
90919 4640 35...

output:

39679281240808

result:

ok answer is '39679281240808'