QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#338803 | #8136. Rebellious Edge | thisisatest | WA | 46ms | 3596kb | C++17 | 2.6kb | 2024-02-26 12:20:53 | 2024-02-26 12:20:58 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
long long inf = numeric_limits<long long>::max()/3;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
//ifstream cin("input.txt");
long long t;
cin>>t;
while (t--){
long long n,m;
cin>>n>>m;
long long left = -1;
long long right = -1;
long long weight = -1;
vector<long long> best(n+1,inf);
vector<vector<pair<long long,long long>>> adj_list(n+1);
for (int i=0;i<m;i++){
long long u,v,w;
cin>>u>>v>>w;
if (u>v){
left = v;
right = u;
weight = w;
}else{
best[v] = min(best[v],w);
adj_list[v].push_back({u,w});
}
}
long long answer1 = 0;
for (int i=2;i<=n;i++){
if (best[i]==inf){
answer1 = inf;
break;
}else{
answer1 += best[i];
}
}
long long answer2 = 0;
for (int i=2;i<=n;i++){
if (i==left){
continue;
}
if (best[i]==inf){
answer2 = inf;
break;
}
for (int j=0;j<adj_list[i].size();j++){
adj_list[i][j].second -= best[i];
answer2 += best[i];
}
}
priority_queue<pair<long long,long long>,vector<pair<long long,long long>>,greater<pair<long long,long long>>> pq;
vector<long long> path(n+1,inf);
pq.push({0,right});
path[right] = 0;
long long shortest_path;
while (!pq.empty()){
long long dist = pq.top().first;
long long curr = pq.top().second;
pq.pop();
if (dist>path[curr]){
continue;
}
if (curr==1){
shortest_path = dist;
break;
}
for (pair<long long,long long> child:adj_list[curr]){
if (dist+child.second < path[child.first]){
path[child.first] = dist+child.second;
pq.push({path[child.first],child.first});
}
}
}
if (answer2==inf || shortest_path==inf){
answer2 = inf;
}else{
answer2 += shortest_path + weight;
}
cout<<min(answer1,answer2)<<"\n";
}
return 0;
}
/*
1
3 2
1 3 10
3 2 10
*/
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3596kb
input:
3 5 6 1 2 4 1 3 2 2 3 0 3 4 1 4 5 1 5 2 1 4 4 1 2 4 1 3 6 1 4 8 4 2 1000000 3 3 1 2 100 2 1 10 2 3 1000
output:
5 18 1100
result:
ok 3 number(s): "5 18 1100"
Test #2:
score: -100
Wrong Answer
time: 46ms
memory: 3552kb
input:
50000 4 5 2 4 998973548 2 3 501271695 4 1 778395982 1 4 32454891 1 2 757288934 4 5 1 4 720856669 2 3 665098951 3 4 407461517 2 1 866914401 1 2 457859826 4 5 1 2 75288664 1 4 624893594 3 2 458973866 2 4 769074655 2 3 834773751 4 5 2 3 237060634 2 4 297307882 3 4 200383586 1 2 42856502 3 1 16574713 4 ...
output:
1291015520 1530420294 1534956009 480300722 1366795927 1541095843 2493849488 858095911 1039553235 793861088 635606317 1051598350 612891589 1265994009 620809530 1678219738 1556463491 93634961 960978736 984886788 1696503797 1002892611 1969660290 1431417780 1515267731 977157479 1937478556 654475526 1401...
result:
wrong answer 9th numbers differ - expected: '1034153425', found: '1039553235'