QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#559991 | #8673. 最短路径 | Sai_tqwq | 10 | 4220ms | 175520kb | C++14 | 2.5kb | 2024-09-12 11:13:39 | 2024-09-12 11:13:39 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define double long double
#define endl '\n'
signed n,m,q;unsigned seed;
struct Edge{int v,w;};
vector<Edge> g1[200009],g2[200009];
struct Node{
int d,u,id;
friend bool operator<(const Node x,const Node y){return x.d>y.d;}
};priority_queue<Node> q1,q2;
int d1[200009],d2[200009];
bool v1[200009],v2[200009];
signed main(){
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
cin>>n>>m>>q>>seed;
std::mt19937 gen(seed);
unsigned Max = -1u / n * n;
auto sample = [&]() {
unsigned x;
do { x = gen(); } while(x >= Max);
return x % n + 1;
};
for(int i=1;i<=m;i++) {
int u = sample();
int v = sample();
int w = gen();
g1[u].push_back({v,w});
g2[v].push_back({u,w});
}
for(int i=1;i<=n;i++){
sort(g1[i].begin(),g1[i].end(),[&](Edge x,Edge y){return x.w<y.w;});
sort(g2[i].begin(),g2[i].end(),[&](Edge x,Edge y){return x.w<y.w;});
}
while(q--){
int s,t,p=0;cin>>s>>t;
if(s==t){cout<<0<<endl;continue;}
if(g1[s].empty()||g2[t].empty()){cout<<-1<<endl;continue;}
vector<int> del1,del2;del1.clear();del2.clear();del1.push_back(s);del2.push_back(t);
d1[s]=d2[t]=0;v1[s]=v2[t]=0;
while(!q1.empty())q1.pop();while(!q2.empty())q2.pop();
q1.push({g1[s][0].w,s,0});q2.push({g2[t][0].w,t,0});
while(!q1.empty()&&!q2.empty()){
if((int)q1.size()<(int)q2.size()){
int x=q1.top().d,u=q1.top().u,id=q1.top().id,v=g1[u][id].v;q1.pop();
if(id+1<(int)g1[u].size())q1.push({d1[u]+g1[u][id+1].w,u,id+1});
if(v1[v])continue;
v1[v]=1;d1[v]=x;del1.push_back(v);
if(v2[v]){p=v;break;}
if(!g1[v].empty())q1.push({x+g1[v][0].w,v,0});
}else{
int x=q2.top().d,u=q2.top().u,id=q2.top().id,v=g2[u][id].v;q2.pop();
if(id+1<(int)g2[u].size())q2.push({d2[u]+g2[u][id+1].w,u,id+1});
if(v2[v])continue;
v2[v]=1;d2[v]=x;del2.push_back(v);
if(v1[v]){p=v;break;}
if(!g2[v].empty())q2.push({x+g2[v][0].w,v,0});
}
}
if(!p){for(int u:del1)v1[u]=0;for(int u:del2)v2[u]=0;cout<<-1<<endl;continue;}
int ans=d1[p]+d2[p];
for(int u:del1)for(auto f:g1[u]){
if(f.w>=(max(d1[p],d2[p])-d1[u])*2)continue;
if(v2[f.v])ans=min(ans,d1[u]+f.w+d2[f.v]);
}
for(int u:del2)for(auto f:g2[u]){
if(f.w>=(max(d1[p],d2[p])-d2[u])*2)continue;
if(v1[f.v])ans=min(ans,d1[f.v]+f.w+d2[u]);
}
for(int u:del1)v1[u]=0;for(int u:del2)v2[u]=0;cout<<ans<<endl;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 5
Accepted
time: 0ms
memory: 14648kb
input:
4 8 5 1112792816 2 3 4 3 4 3 3 2 1 4
output:
3419197189 1798364963 1798364963 3986398077 2337967903
result:
ok 5 lines
Test #2:
score: 0
Wrong Answer
time: 4ms
memory: 15164kb
input:
2000 2000 2000 3336994405 659 1650 1678 341 818 235 1380 1865 1927 1366 1233 1673 267 1698 775 1022 1255 1110 1533 1928 1854 169 1579 729 449 1335 943 583 360 50 795 926 1584 911 1924 604 280 309 1429 420 1107 1858 1466 76 265 1109 1077 622 245 1941 957 1434 1560 1128 122 51 229 925 826 1006 851 323...
output:
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...
result:
wrong answer 157th lines differ - expected: '787133140', found: '-1'
Subtask #2:
score: 0
Wrong Answer
Test #6:
score: 0
Wrong Answer
time: 2132ms
memory: 138860kb
input:
3000 3000000 10000 37461678 2873 1368 1757 2000 1262 1822 2484 1778 2055 2096 2545 366 2923 2028 1469 1874 691 631 1173 2967 894 2020 1207 881 373 236 1913 1923 1351 16 1066 2032 471 1561 1047 2043 457 145 2728 1752 2521 1199 1568 904 2515 543 1472 2161 748 2744 748 1908 912 172 2340 2494 977 267 10...
output:
36084543 49860181 45803385 27805775 41392651 43506617 39517515 39687913 37675345 23367579 37276839 32364058 50703016 26615083 25983590 51209814 42921191 31222991 39092809 25257238 36267824 60108033 34199475 45804995 35826034 34257048 38718065 55135658 31005342 41408425 35033769 37667712 42873640 378...
result:
wrong answer 200th lines differ - expected: '35793309', found: '37591416'
Subtask #3:
score: 10
Accepted
Test #13:
score: 10
Accepted
time: 56ms
memory: 27124kb
input:
200000 200000 10000 1824322211 104482 112162 130667 13436 36792 142259 51832 97549 15358 180076 128251 92635 45296 195115 62109 38014 22014 86754 79735 103777 94797 96086 196760 5955 45622 59618 12995 62585 55686 156402 23085 68138 170749 148553 97603 160274 112975 22651 116322 190720 84774 57075 23...
output:
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...
result:
ok 10000 lines
Test #14:
score: 10
Accepted
time: 25ms
memory: 22172kb
input:
200000 100000 10000 1394653802 99794 128174 196511 141958 176353 6707 19037 95308 12331 132159 47825 12373 47277 130874 165656 114428 81800 12371 165878 128160 33280 71225 139344 138789 126396 182051 103407 151857 20873 18698 155652 38063 150807 191146 57310 174863 114490 88197 158133 29636 137962 1...
output:
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...
result:
ok 10000 lines
Test #15:
score: 10
Accepted
time: 26ms
memory: 22012kb
input:
100000 100000 10000 913053279 28316 35031 36768 9164 74111 12192 71120 23394 97477 34141 50880 24433 99500 23365 99785 571 95784 50853 8313 70744 33410 27807 29073 96498 82964 79943 32999 84423 90798 98756 98245 89258 89589 49557 90152 40866 53406 41385 33889 39018 42199 52421 13784 26639 85311 5769...
output:
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...
result:
ok 10000 lines
Test #16:
score: 10
Accepted
time: 0ms
memory: 14692kb
input:
1 1 10000 1920830832 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1...
output:
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
result:
ok 10000 lines
Subtask #4:
score: 0
Wrong Answer
Test #17:
score: 0
Wrong Answer
time: 2109ms
memory: 42740kb
input:
200000 500000 10000 3113327438 68816 31422 174349 125983 18111 188786 84806 87249 142007 180723 95611 116398 104758 196349 77547 89859 120350 77199 110906 10209 177461 194861 115505 105566 27493 166237 15676 158290 86204 116010 159979 125659 132461 61989 194289 157721 18830 82910 166696 98162 125208...
output:
21671419385 -1 31996366393 19295613250 -1 25762674206 -1 -1 30333017011 19365143518 -1 -1 33507263304 23396138679 19478702596 -1 -1 -1 20149023019 23727970709 24229890807 28875639856 -1 22877254445 25605430611 27724721382 -1 26550979061 25161604327 -1 22676819628 19348763468 -1 24220635647 161988758...
result:
wrong answer 1516th lines differ - expected: '2780310916', found: '21185258913'
Subtask #5:
score: 0
Wrong Answer
Test #21:
score: 20
Accepted
time: 2180ms
memory: 42748kb
input:
200000 500000 10000 1843053063 3409 108359 168924 184622 13119 119837 109492 38050 97152 51201 49047 12472 183998 191613 193074 177289 194248 104409 15509 88499 61967 143398 4532 56790 196650 158711 63655 70744 140178 107299 63530 87330 127334 159237 7134 184418 125289 28604 176966 179527 181695 128...
output:
18098332289 22666064981 23549058925 26339412859 -1 23116762056 22209493371 21117534178 22029252897 33952599088 17793204212 13278636159 25843769632 18134229421 29623865096 23847021502 20878297870 -1 -1 21042457357 23208160613 19615484227 26566774108 15726744387 23457868594 23352911380 16578768343 242...
result:
ok 10000 lines
Test #22:
score: 20
Accepted
time: 2125ms
memory: 42428kb
input:
150000 500000 10000 1171171831 91544 80638 88533 64906 57189 104784 102394 38679 38414 49143 137564 139395 140558 140970 64039 53145 108163 56995 38924 95572 48927 4259 148782 85367 44887 19484 36838 83718 10792 128933 90704 81675 116605 19578 51500 21602 137498 101466 7037 146764 116437 62263 46477...
output:
14685453949 13815636857 -1 17273133560 17081019981 7904131229 14150324359 -1 13935305592 15172554384 17847228590 18396095342 18099059942 14018081826 13538417865 13039858691 -1 11955929164 19405668785 16207189818 16205956113 13534856652 19625612871 18222174103 11952110215 18451844738 11569289868 1110...
result:
ok 10000 lines
Test #23:
score: 0
Wrong Answer
time: 1848ms
memory: 42352kb
input:
100000 500000 10000 2631726914 31929 27879 6094 25893 24382 94271 36889 15335 70257 50001 55562 28458 89684 21544 11675 76002 1629 82978 61853 95897 1782 75635 5235 30571 84060 72640 12564 23560 56129 28773 94060 9558 38539 63504 35643 99532 25042 68803 42452 40248 72549 51285 86656 88890 70470 5809...
output:
15132037824 8408831601 9425277425 11014294681 8087246201 10199187203 9267001014 12221174318 10266262545 7046786930 10643941494 7901306948 9433569044 8856408603 8459463884 8354267819 10803653357 11313030123 8895533910 10084321258 9070006233 10214822733 12149015809 9798158858 10769868779 9310675329 11...
result:
wrong answer 4886th lines differ - expected: '388338458', found: '9956844307'
Subtask #6:
score: 0
Wrong Answer
Test #24:
score: 0
Wrong Answer
time: 3380ms
memory: 172928kb
input:
100000 3000000 10000 3892765041 14843 34156 43390 49542 38564 95501 26194 87126 18638 53346 69414 47011 95472 58303 44370 77172 75652 90555 94386 31888 47911 9905 70599 97061 52764 24896 31445 15589 82314 43852 97155 93412 11834 45082 75614 42459 67802 32024 82389 4968 32860 62514 97630 28012 14839 ...
output:
1547972368 1533240012 1192488694 1802115335 1491444021 1888896300 1720188008 1762089620 1815841406 1831208977 1250925907 1756812381 2027344758 1385409721 1937527554 1877583272 1632784703 2090242303 1694524102 1818975564 1429598050 1599437722 2286394605 1416358110 1929044811 2022891575 1487757623 156...
result:
wrong answer 3400th lines differ - expected: '1042457420', found: '1874222882'
Subtask #7:
score: 0
Wrong Answer
Test #33:
score: 0
Wrong Answer
time: 4220ms
memory: 175520kb
input:
200000 3000000 10000 3910662331 161257 40967 50546 86049 199665 199302 177403 36274 158790 143151 193304 78511 28032 149723 96394 37099 2157 76024 195400 34830 41933 147591 191613 96468 194837 67293 57992 63117 24749 6694 117818 87323 46130 53470 174812 24950 149173 124886 119910 54123 2297 124533 5...
output:
3371897180 3059012504 3899803743 4918664465 3834117056 3101758258 4211432244 3700678845 3320322266 4020388668 3314213999 4156507838 3045843635 3379778417 3201003504 4511026914 4847106102 3502897631 3579081638 3470448652 4322207527 2160161436 4372954162 3841655899 3367608876 3864513044 4225021719 377...
result:
wrong answer 9245th lines differ - expected: '1336688213', found: '3024590040'