QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#642924#9165. Petrol stationsshenfe1#18 44ms19088kbC++201.7kb2024-10-15 17:06:152024-10-15 17:06:15

Judging History

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

  • [2024-10-15 17:06:15]
  • 评测
  • 测评结果:18
  • 用时:44ms
  • 内存:19088kb
  • [2024-10-15 17:06:15]
  • 提交

answer

#include <bits/stdc++.h>

#define int long long

using namespace std;

const int inf=1e18;
const int MAX=3e5+10;
const int mod=1e9+7;

int n,k;
vector<pair<int,int>> g[MAX];
int ans[MAX];
vector<int> ord;
vector<int> r;

void dfs(int v,int p=-1){
    ord.push_back(v);
    for(auto to:g[v]){
        if(to.first==p)continue;
        r.push_back(to.second);
        dfs(to.first,v);
    }
}

void solve(){
    cin>>n>>k;
    for(int i=1;i<n;i++){
        int a,b,c;
        cin>>a>>b>>c;
        a++,b++;
        g[a].push_back({b,c});
        g[b].push_back({a,c});
    }
    int l=-1;
    for(int i=1;i<=n;i++){
        if(g[i].size()==1)l=i;
    }
    dfs(l);
    int minus=0;
    multiset<pair<int,int>> st;
    for(int i=0;i<n-1;i++){
        int cnt=1;
        while(!st.empty()&&st.begin()->first-minus<r[i]){
            // cout<<ord[i]<<" "<<st.begin()->second<<" "<<n-i-1<<"\n";
            ans[ord[i]]+=st.begin()->second*(n-i-1);
            cnt+=st.begin()->second;
            st.erase(st.begin());
        }
        st.insert({k+minus,cnt});
        minus+=r[i];
    }
    reverse(ord.begin(),ord.end());
    reverse(r.begin(),r.end());
    minus=0;
    for(int i=0;i<n-1;i++){
        int cnt=1;
        while(!st.empty()&&st.begin()->first-minus<r[i]){
            ans[ord[i]]+=st.begin()->second*(n-i-1);
            cnt+=st.begin()->second;
            st.erase(st.begin());
        }
        st.insert({k+minus,cnt});
        minus+=r[i];
    }
    for(int i=1;i<=n;i++)cout<<ans[i]<<"\n";
}

signed main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int t=1;
    // cin>>t;
    while(t--)solve();
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3660kb

input:

750 918
159 63 18
573 310 105
135 400 57
618 27 113
41 265 24
99 576 61
242 85 109
490 88 0
626 721 0
407 446 0
78 644 124
346 198 17
541 504 147
543 423 24
302 450 25
397 344 80
129 607 76
474 59 140
30 10 29
375 260 1
404 81 0
658 695 153
450 100 92
532 249 10
597 151 133
739 714 0
212 345 85
558 ...

output:

0
2408
1688
2970
0
53760
0
9512
0
70358
0
0
577
18282
1424
0
23912
60952
0
1496
0
0
0
83420
574
648
137167
12725
75290
0
47565
2196
34447
0
0
3808
1344
63369
0
0
2128
0
0
0
7440
11000
612
328
3627
0
70500
4807
1605
0
0
0
2880
0
21
384
182
106
1498
0
72177
0
166670
749
52195
0
0
2779
2900
620
0
5680
...

result:

wrong answer 2nd lines differ - expected: '96', found: '2408'

Subtask #2:

score: 8
Accepted

Test #13:

score: 8
Accepted
time: 1ms
memory: 3600kb

input:

2 1
0 1 1

output:

0
0

result:

ok 2 lines

Test #14:

score: 8
Accepted
time: 34ms
memory: 18652kb

input:

70000 1
50913 18377 1
33894 11911 1
61940 7863 1
61602 33470 1
26341 35575 1
30813 50301 1
2994 67214 1
38527 61714 1
37381 3396 1
43274 14867 1
59352 12066 1
68877 40750 1
44756 43671 1
57921 17977 1
10879 47719 1
26878 13556 1
27329 23697 1
45109 11513 1
21307 12312 1
27202 27807 1
7250 14810 1
27...

output:

2128187656
1918647796
1539693556
1198079316
2227641388
537651676
1566795636
1713609688
462341800
403913520
1372196836
2449371376
2448661176
226085260
2289814488
2374543080
1462250988
2446901740
2288343736
788226400
1802397916
2219170356
2367201616
130103388
1927347880
2324936140
630135880
1489088716...

result:

ok 70000 lines

Subtask #3:

score: 10
Accepted

Dependency #2:

100%
Accepted

Test #15:

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

input:

70000 517272873
57335 18148 62837135
28239 56484 253183094
23004 59130 129215861
558 17489 52424960
55884 27928 150784869
35390 18538 216587635
31618 4121 168195328
49409 13677 142007449
61001 39616 40892641
67336 21612 185484704
34486 9556 246576628
4933 23924 201603991
57035 5529 29829254
38668 21...

output:

450859
215263283
544492560
222149
1276050
1993840
179130
3145479
1061520
186918
436257
128366615
192824
0
190234048
88612
216212
1174022
0
1203363128
455706327
343283
436439022
417240
1223229612
182003220
739660714
325508658
0
1222504809
1192350690
0
507280212
444391111
0
866072172
564047
0
90962902...

result:

ok 70000 lines

Test #16:

score: 10
Accepted
time: 43ms
memory: 19088kb

input:

70000 611016790
21272 16063 50360
30758 33429 30642
23317 5625 9045
66335 5731 24130
36096 15843 18089
60665 41152 19640
6148 39003 53047
42150 9859 46839
5191 59681 3924
53733 53709 36514
50103 15977 57464
40309 10907 5473
38449 24104 14928
69191 4445 31512
57129 33963 47456
14993 17284 40793
34588...

output:

69999
102210
23584
30220
0
0
111532
0
0
90100
0
69120
140466
49221
1132
98672
0
16653
60795
0
33401
15030
0
139998
6985
0
80680
0
0
96782
0
3500
19900
0
80444
52863
31767
84426
0
34538
11825
25587
187296
0
78744
36540
0
0
102247
0
71640
100900
58416
0
10056
165995
44813
21184
154679
0
52136
20348
0
...

result:

ok 70000 lines

Subtask #4:

score: 0
Wrong Answer

Test #17:

score: 0
Wrong Answer
time: 26ms
memory: 10448kb

input:

69973 4
44281 27162 1
15299 61302 1
19250 66379 1
45970 65938 1
23683 4445 2
62232 40589 1
37028 58991 2
58769 32024 0
41860 69672 2
14687 10058 2
7874 6780 2
60579 37047 2
739 4096 2
53137 22114 2
35060 21464 0
42597 11591 2
68051 23473 2
61458 35690 2
38719 6601 2
57406 26025 1
38192 41521 0
47941...

output:

1425322826
601328
943644912
188851138
944771548
1782170310
771302
1159970070
307807038
24822
2138974644
218302
851468678
1065995601
271174422
741609488
1199080
304298000
282824556
371094552
1410319318
338062
2047055100
134670
1156801737
743212990
59961
691757476
399393719
677287
1179201248
122809
23...

result:

wrong answer 1st lines differ - expected: '769608', found: '1425322826'

Subtask #5:

score: 0
Skipped

Dependency #4:

0%

Subtask #6:

score: 0
Skipped

Dependency #1:

0%