QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#861966 | #4809. Maximum Range | thomas0702 | AC ✓ | 39ms | 18204kb | C++14 | 2.7kb | 2025-01-18 20:53:43 | 2025-01-18 20:54:16 |
Judging History
answer
#include<bits/stdc++.h>
#define fir first
#define sec second
#define pb push_back
using namespace std;
void rd(){}
template<typename T,typename... U> void rd(T &x,U&... arg){
x=0;int f=1,c=getchar();
while(c<'0'||c>'9'){if(c=='-') f=-1;c=getchar();}
while(c>='0'&&c<='9') x=x*10+c-48,c=getchar();
x*=f;rd(arg...);
}
typedef pair<int,int> pii;
template<typename T> inline bool chkmax(T &x,T y){return x<y&&(x=y,1);}
template<typename T> inline bool chkmin(T &x,T y){return x>y&&(x=y,1);}
const int maxn=1e5+5,inf=0x3f3f3f3f;
struct edge{int v,w,prev;}E[maxn<<1];
int N,M,head[maxn],cnt;
void add(int u,int v,int w){E[++cnt]={v,w,head[u]};head[u]=cnt;}
int dfn[maxn],low[maxn],st[maxn],col[maxn],MAX=-1,COL;
pii Max[maxn],Min[maxn];
void tarjan(int u,int fa){
dfn[u]=low[u]=++dfn[0],st[++st[0]]=u;
for(int i=head[u],v=E[i].v;i;v=E[i=E[i].prev].v){
if(v==fa) continue;
if(!dfn[v]) tarjan(v,u),chkmin(low[u],low[v]);
else chkmin(low[u],dfn[v]);
}
if(dfn[u]==low[u]){
int t;
col[0]++;
Max[col[0]].fir=-inf;
Min[col[0]].fir=inf;
do col[t=st[st[0]--]]=col[0];while(t!=u);
}
}
int par[maxn],to[maxn],x,y;
void dfs(int u,int fa){
par[u]=fa,dfn[u]=low[u]=++dfn[0];
if(u==x||u==y){
int v=u^x^y;
if(!dfn[v]){
dfs(v,u);
if(chkmin(low[u],low[v])) to[u]=v;
}
}
for(int i=head[u],v=E[i].v;i;v=E[i=E[i].prev].v){
if(v==fa||col[v]!=COL) continue;
if(!dfn[v]){
dfs(v,u);
if(chkmin(low[u],low[v])) to[u]=v;
}else if(chkmin(low[u],dfn[v])) to[u]=v;
}
}
bool vis[maxn];
int now[maxn];
vector<int> vec;
void euler(int u){
for(int i=now[u],v=E[i].v;i;v=E[i=now[u]].v){
now[u]=E[i].prev;
if(vis[(i+1)/2]) vis[(i+1)/2]=0,euler(v);
}
vec.pb(u);
}
int main(){
rd(N,M);
for(int i=1;i<=M;i++){
int u,v,w;rd(u,v,w);
add(u,v,w),add(v,u,w);
}
tarjan(1,0);
for(int u=1;u<=N;u++)
for(int i=head[u];i;i=E[i].prev)
if(col[u]==col[E[i].v])
chkmax(Max[col[u]],{E[i].w,(i+1)/2}),
chkmin(Min[col[u]],{E[i].w,(i+1)/2});
for(int i=1;i<=col[0];i++)
if(chkmax(MAX,Max[i].fir-Min[i].fir))
COL=i;
memset(dfn,0,sizeof dfn);
int u=E[Max[COL].sec*2].v,v=E[Max[COL].sec*2-1].v;
x=E[Min[COL].sec*2].v,y=E[Min[COL].sec*2-1].v;
if(u==x||u==y) swap(u,v);
dfn[u]=low[u]=++dfn[0];
dfs(v,u);
if(dfn[x]<dfn[y]) swap(x,y);
for(int i=x;i!=u;i=par[i])
for(int j=head[i];j;j=E[j].prev)
if(E[j].v==par[i])
vis[(j+1)/2]=1;
for(int i=x;i!=u;i=to[i])
for(int j=head[i];j;j=E[j].prev)
if(E[j].v==to[i])
vis[(j+1)/2]^=1;
for(int i=1;i<=N;i++) now[i]=head[i];
euler(u);
vec.pop_back();
printf("%d\n%d\n",MAX,(int)vec.size());
for(int i:vec) printf("%d ",i);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 5836kb
input:
5 7 1 2 1 1 3 -2 2 3 1 3 4 3 4 5 1 1 5 -1 2 5 2
output:
5 4 4 3 1 5
result:
ok ok
Test #2:
score: 0
Accepted
time: 15ms
memory: 10112kb
input:
99997 100000 12238 99016 352755196 99016 25485 -412473602 25485 2440 991507552 2440 31171 -181894654 36970 2440 -800167579 2440 41865 -148191946 96629 31171 847888506 36970 95740 395546542 27992 2440 647886610 99016 29557 369124914 80795 27992 -673871966 36970 3509 573208857 57672 29557 874406776 41...
output:
1959330954 56 94991 96048 4697 44442 68883 69259 57672 29557 99016 25485 73944 10503 93639 43423 7822 22393 79804 21467 41262 37318 80875 964 80256 57732 56899 24616 94522 90367 27992 2440 31171 95092 34883 46301 96778 37694 88289 30288 68523 54073 84997 89628 67966 84407 3463 72825 51491 87712 9623...
result:
ok ok
Test #3:
score: 0
Accepted
time: 13ms
memory: 10316kb
input:
99997 100000 41884 21178 -431811360 41884 42699 -450057006 36523 21178 582079730 21178 96679 615552614 63637 21178 498974417 96679 5108 235820276 75058 41884 220112636 35148 42699 589595309 36523 18002 -637739861 65854 5108 -312755792 45137 41884 -511118771 5108 31311 554050951 25335 35148 -28341059...
output:
1968439328 40 98098 23692 87673 42699 41884 45137 85192 38202 83711 83919 55330 71151 98733 99716 70298 33264 26071 90144 25926 52252 51434 69337 7577 5108 50088 6204 28694 41126 87303 83047 26981 54901 59612 14678 35287 78274 18331 89860 71024 99686
result:
ok ok
Test #4:
score: 0
Accepted
time: 12ms
memory: 10828kb
input:
99984 99999 33974 29867 335681778 33974 87468 348956829 83048 87468 320849805 29867 69456 -424530698 72457 69456 -950650074 53838 83048 755969166 85914 69456 569454441 51728 87468 -202158773 15970 29867 -865071002 15970 94894 697607001 94894 74694 616318126 33974 11496 -89287579 53838 34365 -6577379...
output:
1985932414 137 80694 50114 35807 13570 17579 35273 34242 79484 57829 70061 54933 64625 46887 161 1367 40009 10954 67611 74612 46892 19937 23257 66917 56675 85914 55808 57640 58540 79605 55857 61993 46598 303 11395 92249 27866 23026 83298 1652 76013 55585 53162 41141 5525 41602 63721 42073 54251 1195...
result:
ok ok
Test #5:
score: 0
Accepted
time: 13ms
memory: 10496kb
input:
99988 99992 8584 11873 -811540160 68064 11873 -930246087 11873 60056 916668870 68064 82193 -859062523 60056 75072 790866030 27767 75072 357619485 75072 78221 411650300 39636 82193 264106928 6675 60056 933851261 71747 78221 -508471038 11873 92771 -665232168 34402 27767 -906494982 11873 42714 63734230...
output:
1932268861 30 6675 60056 75072 91957 3186 29873 5185 88236 50628 2518 83283 23798 89787 8975 26922 21107 93559 75593 83884 20678 16385 62720 25891 75176 34179 64174 38274 8778 99809 28745
result:
ok ok
Test #6:
score: 0
Accepted
time: 14ms
memory: 9800kb
input:
99996 99996 58191 98120 261718607 91298 98120 471683748 58191 68921 217652908 67441 91298 -731916804 78177 68921 810185021 98120 54747 -35446486 78177 2822 -409569426 91298 68058 -897038977 68921 39067 892161204 30165 78177 379543758 32418 98120 -139944101 11281 68921 422411872 37751 32418 331606200...
output:
1752928792 25 18913 29915 78216 34081 11281 68921 58191 48440 3783 3308 58464 1917 30739 77560 4369 46983 74019 64478 81854 65221 16812 67249 25934 42296 85525
result:
ok ok
Test #7:
score: 0
Accepted
time: 13ms
memory: 10308kb
input:
99996 100000 39127 4358 657531703 4358 66528 484843263 47215 4358 -856669390 47215 26179 -147254695 24822 39127 -635228854 81984 26179 600617794 24822 60559 327733708 39127 23879 286268283 95563 81984 -766366787 96587 24822 723252700 23879 13711 -303309809 60559 38379 992907085 60559 6012 -15086498 ...
output:
1948904917 69 60559 24822 39127 23879 13711 16150 60168 12024 27325 73608 58919 19383 92093 74141 3750 42006 67183 31390 97465 24485 4358 47215 37638 64989 16592 51304 2518 69243 21713 82961 63713 67595 12017 20261 76786 3677 86915 23553 32277 61378 82877 24890 38051 91154 63827 13465 90743 30145 41...
result:
ok ok
Test #8:
score: 0
Accepted
time: 14ms
memory: 10288kb
input:
99983 99998 360 38113 273639182 29807 360 -492749399 360 45494 960572841 67090 45494 -168787586 38113 61765 -90469418 71988 360 -556152065 67090 77653 704061103 30847 38113 542389160 84363 30847 295740326 30847 62591 -916431414 86104 77653 878763485 45494 11422 -795069866 86104 64096 714130240 61765...
output:
1972142685 103 64559 85762 75828 51724 32129 63325 64224 8676 90889 81778 12491 77919 78179 92489 35581 64227 36319 90467 41955 3057 54005 53933 46744 85353 27315 95837 87774 11366 17931 23127 1270 2870 77358 80825 47699 24251 3573 30341 2926 44188 27377 95281 57135 40341 19111 80881 96812 74819 909...
result:
ok ok
Test #9:
score: 0
Accepted
time: 14ms
memory: 10308kb
input:
99991 99993 70785 63179 -402654804 91872 63179 -441007900 30847 70785 779215016 72954 63179 -228470351 92375 30847 534166099 49724 63179 -37611056 44235 70785 -443931516 38220 44235 -187234181 44235 63035 -237171010 30847 50624 118354734 92375 24980 -382011924 56418 50624 -658160541 50624 10991 -966...
output:
1793776773 39 31140 44630 73442 3092 58361 62402 66274 56013 57891 97526 53000 30350 23087 6367 82953 60080 27731 69200 65937 39802 10342 93383 98025 32990 80941 99322 79936 72565 88607 52773 86737 91872 63179 72954 40199 70428 9524 46153 84999
result:
ok ok
Test #10:
score: 0
Accepted
time: 13ms
memory: 10184kb
input:
99995 99997 93178 82375 -969044986 93178 19072 -204354005 35344 93178 172625135 93178 56390 -284098052 88798 19072 842699965 82375 24707 508376359 19072 71420 2142150 40446 93178 -437060610 40446 51377 -236216782 51377 89470 -349454494 19614 71420 -747727667 89470 14659 91615005 35344 49064 -7684125...
output:
1928930936 26 41657 13782 96148 78635 7380 82571 70423 39549 27601 98304 38246 16753 14342 82375 93178 40446 51377 3209 48876 53143 61912 65439 55069 80688 84372 3529
result:
ok ok
Test #11:
score: 0
Accepted
time: 13ms
memory: 10316kb
input:
99984 99992 13417 15144 707033172 79217 13417 -472387862 26033 13417 -36135406 13417 16174 -89686765 16174 96840 613288820 13417 11444 -398371819 11444 41716 627519572 41716 5951 233568303 96840 41978 -755500822 55150 41716 715325856 41978 88656 816236450 15144 5839 644375332 88656 95763 878003222 6...
output:
1958415767 77 11993 26033 83146 48772 20594 56689 89755 28438 72038 8683 90216 19186 39284 33954 92172 82891 26100 81816 24802 65474 44860 12538 28616 36613 4719 62781 15965 90176 17104 96840 86256 35323 32088 62378 4754 54762 24330 56611 60148 52859 77239 99818 7381 1421 64779 92567 88656 87640 120...
result:
ok ok
Test #12:
score: 0
Accepted
time: 28ms
memory: 14048kb
input:
80000 98516 26903 1777 -924244496 60501 50043 -169932745 73857 9688 924119596 51789 37304 -395289958 66012 19584 677645038 36094 31329 -438857807 23716 36356 333796707 64800 10550 -272867916 24677 61533 -276717055 37159 23410 564922612 57429 13265 -535543043 53527 15651 304660186 13261 58532 2102669...
output:
1999981013 59626 55945 35610 33489 22956 37280 5554 78997 11316 25051 25291 62056 3574 57161 11751 52409 21213 51177 73528 2409 21188 44843 78428 50116 40264 61422 29265 22194 24741 15997 9392 77878 28858 11500 5075 62632 7158 48045 41525 37412 17116 65210 20832 45337 28716 73863 64335 23992 6593 10...
result:
ok ok
Test #13:
score: 0
Accepted
time: 19ms
memory: 14792kb
input:
80000 94684 787 61972 -860542411 20083 27809 428832046 4166 26381 209001312 20451 29135 61290072 27638 15329 -490707445 59773 62375 228047113 41999 67706 -799550202 19069 6355 948713742 55898 70936 -879012749 13950 62531 -590275719 50627 17883 622866713 69768 13748 953427970 48538 24420 123552876 18...
output:
1999848367 19139 6242 62625 3089 26776 28230 37002 9379 75740 44182 26012 44857 24205 59521 60388 44934 8906 61725 53397 67718 11637 45354 4057 7264 58884 69497 31336 14596 17434 59719 18426 40360 24153 72600 33742 1985 3288 12168 76551 62303 75365 11465 75065 60859 5141 48718 79005 5881 1398 56836 ...
result:
ok ok
Test #14:
score: 0
Accepted
time: 26ms
memory: 13896kb
input:
85000 100000 12684 20697 -831379236 10219 41211 -539041569 17720 69181 -525999432 58189 3530 -215648248 29815 3583 -430621047 9529 62763 -641420982 54333 16217 517578175 3636 39822 -659701191 77761 44172 489371539 55825 60143 523113008 70503 23773 907033043 33924 58465 321062719 14586 28291 -3111270...
output:
1999860030 29750 74612 36590 59271 65843 80176 58775 29607 55342 59787 54180 80260 68164 72983 805 70355 5078 1265 2330 45094 5068 58996 45647 9623 48292 54471 79963 27451 61649 61822 79375 14930 28767 25031 76432 60853 24794 67258 52814 70575 81701 40656 33789 76090 48871 29803 77993 19320 14357 44...
result:
ok ok
Test #15:
score: 0
Accepted
time: 21ms
memory: 13860kb
input:
90000 98235 4034 56551 535462424 1285 78054 -432396039 13482 78432 326444126 36922 32666 -423303402 46270 14278 327106206 73367 11943 -120750644 57985 1074 521321207 51396 70877 604419844 80121 19287 -807213060 83316 29903 437891049 11641 29638 -109912627 54265 78774 -197898831 30288 41596 5540178 6...
output:
1999860693 31500 60067 7300 26771 14931 51692 83822 52198 50738 68125 6777 45812 3844 12974 15794 16455 81629 59778 10574 67097 75430 39564 23625 56491 30501 62398 58507 19129 25462 47205 31301 78365 1757 87085 73714 70677 63563 21533 75255 49244 67633 24457 7401 83887 18956 45692 68183 75261 10441 ...
result:
ok ok
Test #16:
score: 0
Accepted
time: 0ms
memory: 7884kb
input:
3 3 1 2 233 2 3 233 3 1 233
output:
0 3 3 2 1
result:
ok ok
Test #17:
score: 0
Accepted
time: 24ms
memory: 13388kb
input:
80000 98516 79421 53468 -473723591 32949 9872 -473723591 62946 8406 -473723591 59103 43576 -473723591 16122 2510 -473723591 71372 57984 -473723591 69594 62336 -473723591 62408 2967 -473723591 55049 42762 -473723591 59003 53689 -473723591 40025 11987 -473723591 45334 77817 -473723591 78189 13603 -473...
output:
0 15735 1356 16307 42661 64920 69962 26202 35674 16350 61026 72558 72778 68920 73738 17554 18693 40737 28063 59394 75900 63008 49429 68250 46626 61011 73289 34824 42785 72155 38395 4390 12702 51224 74182 65373 54365 70513 17196 37510 33541 15393 2287 32567 40279 67311 20376 11633 65282 22039 57256 3...
result:
ok ok
Test #18:
score: 0
Accepted
time: 16ms
memory: 14576kb
input:
80000 94684 47824 74620 763247771 43134 68794 613332131 70242 39382 613332131 66806 65879 75791783 75560 29585 -737165426 45214 2688 -196239255 8769 36609 75791783 37142 48567 891334271 6698 68647 -647334986 19812 30219 75791783 54674 54464 75791783 37193 432 312981361 61862 8510 924505446 46265 217...
output:
0 7 50813 58244 24900 73213 36103 58244 40071
result:
ok ok
Test #19:
score: 0
Accepted
time: 17ms
memory: 13604kb
input:
85000 100000 31990 69099 -1731161 74081 84474 -843271979 69532 6116 -722727335 3141 60259 343298872 38598 67962 -767329308 30683 39703 -891912298 38710 77516 588627702 73818 32961 -280568563 67819 68460 -280568563 83602 37746 447820859 62363 72940 424564587 75905 14504 -672710766 36204 47164 -309254...
output:
0 4 6460 4948 15671 38466
result:
ok ok
Test #20:
score: 0
Accepted
time: 18ms
memory: 11716kb
input:
90000 98235 69866 86722 78531852 30106 32321 327858881 79041 9815 -587712775 79725 49462 -125435461 69389 86092 -1577070 50897 14792 41432121 56667 24207 607577044 57695 13616 -918716805 85852 55356 373162845 14242 66828 373162845 22169 53706 122244212 12914 13232 -32572189 89479 43813 373162845 170...
output:
0 3 85938 41311 64237
result:
ok ok
Test #21:
score: 0
Accepted
time: 33ms
memory: 16448kb
input:
95000 95100 62823 7972 -98597476 11872 80236 -376224359 36239 18998 152179746 2941 59846 675971975 31009 87130 277327502 46848 88613 920187456 32265 89904 394908111 32665 71981 -717413241 22224 29525 -692676756 65253 56311 -576492743 55461 93031 -170229140 55015 388 -497138138 45550 26917 -268626991...
output:
1915204480 95000 4160 4898 45927 18117 22113 92459 86795 75084 71157 51146 4657 32308 12559 59943 46404 89002 51717 42468 37180 25569 74503 4163 12763 5716 25515 67578 3104 19822 91748 50073 66923 23126 66799 91425 3055 5860 41160 52861 44226 57582 90387 57543 45641 68955 9491 416 42407 12642 33833 ...
result:
ok ok
Test #22:
score: 0
Accepted
time: 33ms
memory: 15232kb
input:
95000 96000 8007 59556 217030444 46023 14373 -128335181 570 85822 126207845 80762 41869 723617383 46198 31613 465974823 58802 50379 140015731 2888 19011 720151475 74117 24138 -552326878 17454 57986 -347055744 36830 84433 -534562264 50548 57713 -335694553 93993 32600 -419354047 32724 61082 -652619648...
output:
1929035844 95000 84179 59123 75883 94708 77337 18765 94087 63591 7832 27620 29007 62832 38748 48205 50570 73136 48587 55066 1317 8806 27326 72463 52704 24337 77707 14728 41482 50204 55767 912 16355 81723 2755 48643 64564 35083 94923 34199 13082 15707 46872 23934 62048 47664 54648 36553 8514 35076 31...
result:
ok ok
Test #23:
score: 0
Accepted
time: 39ms
memory: 15360kb
input:
95000 100000 34956 60336 45395839 40278 30507 251182515 25816 87070 224950942 60653 29762 -585384516 62881 91427 422022135 44457 4481 606128079 41132 25251 -160882610 32094 84433 691041934 36977 23421 351841455 86462 6561 -425673978 22134 14854 -534276133 21754 19992 795688135 47865 45188 433897879 ...
output:
1906862084 95000 31190 12918 76752 64034 65248 93980 79643 50918 48972 58370 54141 59655 33427 60057 24196 6592 30619 26318 59168 73090 65849 18149 4210 74992 65491 64937 89663 87597 55980 92832 65952 49573 86429 30956 30082 47134 69947 45162 15353 78588 26329 3227 82121 1937 66368 93407 75146 88771...
result:
ok ok
Test #24:
score: 0
Accepted
time: 39ms
memory: 15732kb
input:
99900 100000 70100 76896 -51386609 16964 79827 516332810 7183 80746 628092448 41385 96532 501920794 42994 48777 82641247 96028 56184 -67050812 32451 50173 -544563060 82225 66648 -50784922 2128 11900 360969680 70814 64690 710732642 83492 60589 106381086 94529 85166 -526924556 46377 77116 948457811 54...
output:
1895701144 99900 33009 71372 11156 3043 21290 4318 80510 79609 93321 75770 61954 16617 7453 42348 34766 44490 72745 31566 11385 40044 52497 13459 82806 74059 91398 22921 76161 65185 34372 50179 83243 90002 97334 49586 1024 61219 97677 27220 34249 12750 76107 73429 45590 39145 91683 29181 58527 2439 ...
result:
ok ok
Test #25:
score: 0
Accepted
time: 36ms
memory: 15740kb
input:
99990 100000 4011 68478 536045518 71538 84132 -940987458 2848 98397 -45141986 69542 48174 -35014400 28195 49500 447539981 97581 41986 205494807 31381 26461 -370585813 42843 8193 -69421974 33975 6124 -486808164 97261 43284 264346869 82796 18093 -14556989 32565 65612 -835815105 1213 99363 105551948 13...
output:
1888920939 99990 90781 50062 53237 6779 9611 99948 29405 3251 39377 37226 87035 27205 59989 51744 69981 64355 95520 69694 43268 71642 81924 23146 97392 7759 54100 96752 98172 61952 32884 16723 86429 67761 42013 16565 2730 45033 6614 69443 31487 96286 94271 13838 87494 50784 70059 4095 60884 88110 49...
result:
ok ok
Test #26:
score: 0
Accepted
time: 36ms
memory: 18204kb
input:
100000 100000 59304 76015 219875086 5260 1994 159258480 64311 53789 590132314 26577 82648 -132474446 81935 37887 643839658 75588 65296 -360133388 36819 63467 -804039106 83511 11104 307929972 82884 73421 -18000026 68841 40306 889617346 29987 70305 -422194823 54347 24412 -95291130 18090 67916 -9315885...
output:
1843628719 100000 92112 61477 73232 673 75201 1191 79581 16125 88394 27574 73704 732 7933 84091 51920 49453 69820 56161 69797 41719 33315 34457 69403 67146 18364 69609 68732 93066 91737 51630 6089 57322 42568 77062 5422 13354 1776 48268 54254 85063 71917 23605 59185 69183 90746 38708 12445 95405 235...
result:
ok ok