QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#721076#7883. Takeout Deliveringyld#WA 156ms52604kbC++202.5kb2024-11-07 15:10:302024-11-07 15:10:31

Judging History

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

  • [2024-11-07 15:10:31]
  • 评测
  • 测评结果:WA
  • 用时:156ms
  • 内存:52604kb
  • [2024-11-07 15:10:30]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
#define endl '\n'
using namespace std;
const int MAXN=3e5+5,inf=1e18;
int head[MAXN],cnt;
struct edge{
    int to,w,nx;
}e1[MAXN<<1];
void add_edge(int u,int v,int w)
{
    e1[cnt].to=v;
    e1[cnt].w=w;
    e1[cnt].nx=head[u];
    head[u]=cnt++;
}
void solve()
{
    int n,m;
    cin>>n>>m;
    for(int i=0;i<=n;i++) head[i]=-1;
    for(int i=1;i<=m;i++)
    {
        int u,v,w;cin>>u>>v>>w;
        add_edge(u,v,w);
        add_edge(v,u,w);
    }
    queue<int> q;
    priority_queue<int,vector<int>,greater<>> q1;
    vector<int> vis(n+1),vise(cnt+1);
    vector<pair<int,int>> p(n+1,{inf,inf});
    p[1]={0,0};
    q1.push(1);
    vis[1]=1;
    vector<pair<int,int>> e[n+1];
    while(q1.size())
    {
        int u=q1.top();q1.pop();
        // cerr<<u<<endl;
        for(int i=head[u];i!=-1;i=e1[i].nx)
        {
            int v=e1[i].to,w=e1[i].w;
            // cerr<<i<<endl;
            if(vise[i]) continue;
            int pre=p[v].first+p[v].second;
            int minn=min({w,p[u].first,p[u].second});
            int now=w+p[u].first+p[u].second-minn;
            // if(u==5 && v==7) cout<<pre<<' '<<now<<endl;
            if(now<=pre)
            {
                p[v].first=max({p[u].first,p[u].second,w});
                p[v].second=p[u].first+p[u].second+w-p[v].first-min({p[u].first,p[u].second,w});
                e[u].push_back({v,w});
                if(!vis[v]){q1.push(v);vis[v]=1;}
                vise[i]=vise[i^1]=1;
            }
        }
    }
    // for(int i=1;i<=n;i++)
    // {
    //     for(auto v:e[i]) cout<<v.first<<' ';
    //     cout<<endl;
    // }
    vector<int> deg(n+1);
    for(int i=1;i<=n;i++)
        for(auto v:e[i]) deg[v.first]++;
    for(int i=2;i<=n;i++) p[i]={inf,inf};
    q.push(1);
    while(q.size())
    {
        int u=q.front();q.pop();
        for(auto [v,w]:e[u])
        {
            int max1=max({p[u].first,p[u].second,w});
            int max2=p[u].first+p[u].second+w-max1-min({p[u].first,p[u].second,w});
            if(max1+max2<=p[v].first+p[v].second)
            {
                p[v].first=max1;
                p[v].second=max2;
                deg[v]--;
                if(!deg[v]) q.push(v);
            }
        }
    }
    // for(int i=1;i<=n;i++)
    //     cout<<p[i].first<<' '<<p[i].second<<endl;
    cout<<p[n].first+p[n].second<<endl;
}
signed main()
{
    cin.tie(0)->sync_with_stdio(0);
    int t=1;
    while(t--) solve();
    return 0;
}

详细

Test #1:

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

input:

4 6
1 2 2
1 3 4
1 4 7
2 3 1
2 4 3
3 4 9

output:

5

result:

ok 1 number(s): "5"

Test #2:

score: 0
Accepted
time: 79ms
memory: 49976kb

input:

300000 299999
80516 80517 597830404
110190 110191 82173886
218008 218009 954561262
250110 250111 942489774
66540 66541 156425292
34947 34948 239499776
273789 273790 453201232
84428 84429 439418398
98599 98600 326095035
55636 55637 355015760
158611 158612 684292473
43331 43332 43265001
171621 171622 ...

output:

1999991697

result:

ok 1 number(s): "1999991697"

Test #3:

score: 0
Accepted
time: 156ms
memory: 48560kb

input:

300000 299999
207226 231742 414945003
84591 210444 175968953
46327 51582 612565723
18773 141119 82562646
76139 286963 762958587
131867 224820 928900783
215240 216181 405340417
144725 290878 195350550
267216 268752 846015171
31413 255927 389339642
45219 147512 489502910
113391 215402 555706684
53359 ...

output:

1989898633

result:

ok 1 number(s): "1989898633"

Test #4:

score: 0
Accepted
time: 107ms
memory: 52476kb

input:

300000 299999
1 118488 989720257
1 181002 810258689
1 254222 172925351
1 176703 737330574
1 218306 941887568
1 105741 645573853
1 188490 794789787
1 273997 91455946
1 214929 293300204
1 127289 600097406
1 30589 330284120
1 128954 532459734
1 163729 627033607
1 24073 718818252
1 41571 755054850
1 560...

output:

725564985

result:

ok 1 number(s): "725564985"

Test #5:

score: 0
Accepted
time: 103ms
memory: 52604kb

input:

300000 299999
19784 19785 438457172
153297 239456 192671538
153297 202254 645947104
9640 9641 583410541
153297 221084 490232940
32210 32211 838809517
153297 171896 625627853
153297 216946 683286844
110843 110844 690710575
153297 176413 983037656
74908 74909 375017711
67676 67677 695121437
153297 196...

output:

1999992880

result:

ok 1 number(s): "1999992880"

Test #6:

score: 0
Accepted
time: 131ms
memory: 49380kb

input:

300000 299999
130662 244000 579178004
167657 294630 753914681
61924 61925 165841675
113560 113561 979316325
151574 218075 973289843
1224 1225 230803236
133441 133442 806726301
167309 249456 853031541
120245 120246 688705252
142688 217826 692299631
106114 106115 735998084
123268 123269 749737073
1208...

output:

1999989691

result:

ok 1 number(s): "1999989691"

Test #7:

score: 0
Accepted
time: 130ms
memory: 49812kb

input:

300000 299999
54474 108948 971770803
11077 22155 470962125
115359 230718 373029049
124472 248944 865510218
11958 23917 100575860
130349 260698 582886291
17563 35127 697131917
54427 108854 274252758
51546 103092 198620066
100126 200252 154524070
14994 29988 528701437
147502 295004 531813162
42285 845...

output:

1823402145

result:

ok 1 number(s): "1823402145"

Test #8:

score: 0
Accepted
time: 85ms
memory: 48724kb

input:

300000 299999
240182 240189 427579190
41871 41880 360542232
57131 57140 353813367
122650 122653 621913649
67332 67340 271427538
107523 107524 774306311
60374 60379 315636931
130805 130808 667109508
154531 154534 327293148
138561 138569 833879694
32543 32551 382610722
287398 287400 211744079
59693 59...

output:

1999983202

result:

ok 1 number(s): "1999983202"

Test #9:

score: -100
Wrong Answer
time: 1ms
memory: 5660kb

input:

10 20
1 6 98
3 4 3
4 5 26
7 8 72
1 2 86
3 7 83
7 10 89
4 7 100
3 6 59
6 9 74
5 6 28
6 7 1
2 9 100
2 6 99
5 10 85
8 10 97
2 10 98
8 9 3
2 3 94
9 10 71

output:

184

result:

wrong answer 1st numbers differ - expected: '170', found: '184'