QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#873685 | #4809. Maximum Range | gsn531 | TL | 33ms | 18412kb | C++14 | 3.5kb | 2025-01-26 20:09:17 | 2025-01-26 20:09:18 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define rep(i, a, b) for(int i = (a); i <= (b); ++i)
#define per(i, a, b) for(int i = (a); i >= (b); --i)
#define pii pair<int, int>
#define fi first
#define se second
#define mkp make_pair
const int maxn = 2e5 + 5;
int n, m;
int cnt = 1, hd[maxn];
struct edge{
int to, nxt, w;
}e[maxn << 1];
inline void add(int u, int v, int w){
++cnt; e[cnt] = {v, hd[u], w}; hd[u] = cnt;
}
inline void Add(int u, int v, int w){
add(u, v, w), add(v, u, 0);
}
bool g[maxn << 1], vis[maxn << 1];
int low[maxn], dfn[maxn], tot, col[maxn], cc, st[maxn], tp;
inline void tarjan(int x, int lst){
dfn[x] = low[x] = ++tot; st[++tp] = x;
for(int i = hd[x]; i; i = e[i].nxt){
if((i ^ 1) == lst) continue;
int v = e[i].to;
if(!dfn[v]){
tarjan(v, i); low[x] = min(low[x], low[v]);
if(low[v] > dfn[x]) g[i] = g[i ^ 1] = 1;
} else low[x] = min(low[x], dfn[v]);
}
}
int mn, mx; pii ix, in, Ix, In;
inline void dfs(int x){
col[x] = cc;
for(int i = hd[x]; i; i = e[i].nxt) if(!g[i]){
if(mn >= e[i].w) mn = e[i].w, in = mkp(x, i);
if(mx < e[i].w) mx = e[i].w, ix = mkp(x, i);
if(col[e[i].to]) continue;
dfs(e[i].to);
}
}
vector<int> Ans;
vector<pii> T[maxn];
inline void Euler(int x){
// cout << "Euler " << x << '\n';
while(T[x].size()){
pii ed = T[x].back(); T[x].pop_back();
if(vis[ed.se]) continue; vis[ed.se] = 1;
Euler(ed.fi);
}
Ans.push_back(x);
}
struct Max_Flow{
int s, t, cur[maxn];
inline void init(){
vis[In.se] = vis[In.se ^ 1] = vis[Ix.se] = vis[Ix.se ^ 1] = 1;
rep(u, 1, n) for(int i = hd[u]; i; i = e[i].nxt){
if(vis[i]) continue;
e[i].w = 1;
}
s = n + 1, t = s + 1;
Add(s, In.fi, 1), Add(s, e[In.se].to, 1);
Add(Ix.fi, t, 1), Add(e[Ix.se].to, t, 1);
}
int inq[maxn];
inline int Dfs(int x){
if(x == t) return 1;
if(inq[x]) return 0; inq[x] = 1;
for(int i = hd[x]; i; i = e[i].nxt){
if(vis[i] or !e[i].w) continue;
int v = e[i].to;
if(Dfs(v)){
e[i].w -= 1, e[i ^ 1].w += 1;
inq[x] = 0; return 1;
}
}
inq[x] = 0;
return 0;
}
inline void calc(){
Dfs(s); Dfs(s);
// memset(vis, 0, sizeof vis);
rep(u, 1, n + 2) for(int i = hd[u]; i; i = e[i].nxt){
if(vis[i] or e[i].w) continue;
int v = e[i].to;
T[u].push_back(mkp(v, i));
T[v].push_back(mkp(u, i));
// printf("addT(%d,%d)\n", u, v);
}
Euler(s);
}
}D;
signed main(){
ios_base::sync_with_stdio(0); cin.tie(NULL);
cin >> n >> m;
rep(i, 1, m){
int u, v, w; cin >> u >> v >> w;
add(u, v, w), add(v, u, w);
}
rep(i, 1, n) if(!dfn[i]) tarjan(i, 0);
int ans = 0;
rep(i, 1, n) if(!col[i]){
mn = 2e9, mx = -2e9;
++cc, dfs(i);
if(mn < 2e9 and mx - mn >= ans){
ans = mx - mn;
Ix = ix, In = in;
}
}
cout << ans << '\n';
// return 0;
D.init(); D.calc();
vector<int> Tmp; for(int x : Ans) if(x <= n) Tmp.push_back(x);
cout << Tmp.size() << '\n';
for(int x : Tmp) cout << x << " "; cout << '\n';
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 12004kb
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 3 4 5 1
result:
ok ok
Test #2:
score: 0
Accepted
time: 31ms
memory: 15344kb
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 31171 2440 27992 90367 94522 24616 56899 57732 80256 964 80875 37318 41262 21467 79804 22393 7822 43423 93639 10503 73944 25485 99016 29557 57672 69259 68883 44442 4697 96048 94991 86274 74677 92617 86665 76022 72089 22074 96230 87712 51491 72825 3463 84407 67966 89628 84997 54073 6852...
result:
ok ok
Test #3:
score: 0
Accepted
time: 27ms
memory: 15632kb
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 70298 99716 98733 71151 55330 83919 83711 38202 85192 45137 41884 42699 87673 23692 98098 99686 71024 89860 18331 78274 35287 14678 59612 54901 26981 83047 87303 41126 28694 6204 50088 5108 7577 69337 51434 52252 25926 90144 26071 33264
result:
ok ok
Test #4:
score: 0
Accepted
time: 30ms
memory: 15344kb
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 195 92249 27866 23026 83298 1652 76013 55585 53162 41141 5525 41602 63721 42073 54251 11958 88466 28353 49296 99532 17325 75547 55727 29864 31939 52174 85999 70541 55140 80600 7311 63247 51807 97023 29296 25952 23014 84486 96848 6053 59406 91605 30363 85067 58162 86558 90720 49758 56921 6...
result:
ok ok
Test #5:
score: 0
Accepted
time: 29ms
memory: 15344kb
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 67 93559 21107 26922 8975 89787 23798 83283 2518 50628 88236 5185 29873 3186 91957 75072 74117 34170 37410 16174 97414 15961 37085 38776 41275 49615 1697 71304 43729 43956 26363 32234 27767 62479 43133 26471 4661 11476 44542 97618 58977 34053 31480 9507 34186 37651 84609 56595 39084 58554...
result:
ok ok
Test #6:
score: 0
Accepted
time: 30ms
memory: 17360kb
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 65221 81854 64478 74019 46983 4369 77560 30739 1917 58464 3308 3783 48440 58191 68921 11281 34081 78216 29915 18913 85525 42296 25934 67249 16812
result:
ok ok
Test #7:
score: 0
Accepted
time: 33ms
memory: 15728kb
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 51 42006 67183 31390 97465 24485 4358 61378 82877 24890 38051 91154 63827 13465 90743 30145 41482 70789 91374 66385 37095 8030 96587 24822 10570 52647 79459 24450 54151 79904 28267 1066 23254 53517 37704 67362 38379 60559 24822 39127 23879 13711 16150 60168 12024 27325 73608 58919 19383 9...
result:
ok ok
Test #8:
score: 0
Accepted
time: 26ms
memory: 15728kb
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 90 49296 67396 29807 28454 75450 46673 3381 93146 3710 58078 58830 32497 42546 8333 97340 50615 1904 47913 25273 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 43099 44609 82678 5288...
result:
ok ok
Test #9:
score: 0
Accepted
time: 27ms
memory: 15344kb
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 70428 9524 46153 84999 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
result:
ok ok
Test #10:
score: 0
Accepted
time: 29ms
memory: 16988kb
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 17 82375 19871 6259 13782 41657 3529 84372 80688 55069 65439 61912 53143 48876 3209 51377 40446 93178
result:
ok ok
Test #11:
score: 0
Accepted
time: 26ms
memory: 18412kb
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 81816 26100 82891 92172 33954 39284 19186 90216 8683 72038 28438 89755 56689 20594 48772 83146 26033 11993 93511 80696 35258 84539 78871 41533 72086 64840 71601 61488 1019 19346 20549 6162 15155 65480 36779 89921 39010 89478 52209 58109 89026 77338 43984 40505 18981 27204 12017 87640 8...
result:
ok ok
Test #12:
score: -100
Time Limit Exceeded
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...