QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#863541 | #4809. Maximum Range | cancan1234 | WA | 38ms | 23592kb | C++14 | 4.7kb | 2025-01-19 19:05:55 | 2025-01-19 19:05:55 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
//char buf[1<<21],*p1=buf,*p2=buf,obuf[1<<21],*O=obuf;
//#define getc() (p1==p2&&(p2=(p1=buf)+fread(buf,1,1<<21,stdin),p1==p2)?EOF:*p1++)
#define getc getchar
inline int read() {
char c = getc() , f = 1;
while (c > '9' || c < '0'){
if (c == '-')f = -1;
c = getc();
}
int p = 0;
while (c >= '0' && c <= '9') {
p = p * 10 + c - '0';
c = getc();
}
return p * f;
}
struct edge{int fr , to , nxt , val;}e[200005];
bool f[100005];
int n , m , head[100005] , cnt = 1 , low[100005] , dfn[100005] , lsbl , mx[100005] , mi[100005] , num , col[100005] , s[100005] , tp;
vector <int> v1 , v2;
inline void add(int u , int v , int val){
e[++cnt].to = v;
e[cnt].fr = u;
e[cnt].val = val;
e[cnt].nxt = head[u];
head[u] = cnt;
}
namespace MF{
struct edge{int fr , to , nxt , val;}e[500005];
int cnt = 1 , head[100005] , dep[100005] , s , t , hd[100005];
inline void adde(int u , int v , int val){
e[++cnt].to = v;
e[cnt].val = val;
e[cnt].nxt = head[u];
head[u] = cnt;
}
inline void add(int u , int v , int val){
adde(u , v , val);
adde(v , u , 0);
}
inline bool bfs(){
for (int i = 1;i <= n + 2;++i)dep[i] = 0;
queue <int> q;
q.push(s);
dep[s] = 1;
while (!q.empty()){
int u = q.front();
q.pop();
for (int i = head[u];i;i = e[i].nxt){
int to = e[i].to;
if (e[i].val && !dep[to]){
dep[to] = dep[u] + 1;
q.push(to);
if (to == t)return 1;
}
}
}
return 0;
}
int dfs(int u , int flow){
if (!flow)return 0;
if (u == t)return flow;
int res = flow;
for (int &i = hd[u];i;i = e[i].nxt){
int to = e[i].to;
if (dep[to] == dep[u] + 1 && e[i].val){
int d = dfs(to , min(res , e[i].val));
e[i].val -= d;
e[i ^ 1].val += d;
res -= d;
if (!res)break;
}
}
return flow - res;
}
inline void dinic(){
s = n + 1;
t = n + 2;
while (bfs()){
for (int i = 1;i <= n + 2;++i)hd[i] = head[i];
while (dfs(s , 2));
}
}
inline void solve(){
queue <int> q1 , q2;
for (int i = head[n + 1];i;i = e[i].nxt){
int to = e[i].to;
if (e[i].val == 0){
if (q1.empty())q1.push(to);
else q2.push(to);
}
}
assert(q2.size() == 1);
while (!q1.empty()){
int u = q1.front();
q1.pop();
if (u <= n)v1.push_back(u);
for (int i = head[u];i;i = e[i].nxt){
int to = e[i].to;
if (e[i].val == 0 && !(i & 1)){
q1.push(to);
e[i].val = 1;
break;
}
}
}
while (!q2.empty()){
int u = q2.front();
q2.pop();
if (u <= n)v2.push_back(u);
for (int i = head[u];i;i = e[i].nxt){
int to = e[i].to;
if (e[i].val == 0 && !(i & 1)){
q2.push(to);
e[i].val = 1;
break;
}
}
}
}
}
void dfs(int u , int fa){
dfn[u] = low[u] = ++lsbl;
s[++tp] = u;
for (int i = head[u];i;i = e[i].nxt){
int to = e[i].to;
if (!dfn[to]){
dfs(to , u);
low[u] = min(low[u] , low[to]);
if (low[to] > dfn[u])f[i / 2] = 1;
}else if (to != fa)low[u] = min(low[u] , dfn[to]);
}
}
void dfs1(int u){
col[u] = num;
for (int i = head[u];i;i = e[i].nxt){
int to = e[i].to;
if (!f[i / 2] && !col[to])dfs1(to);
}
}
signed main(){
//freopen (".in" , "r" , stdin);
//freopen (".out" , "w" , stdout);
n = read() , m = read();
for (int i = 1;i <= n;++i){
mx[i] = -0x3f3f3f3f;
mi[i] = 0x3f3f3f3f;
}
for (int i = 1;i <= m;++i){
int u = read() , v = read() , val = read();
add(u , v , val);
add(v , u , val);
}
for (int i = 1;i <= n;++i)
if (!dfn[i])
dfs(i , 0);
for (int i = 1;i <= n;++i){
if (!col[i]){
num++;
dfs1(i);
}
}
int ans = -1 , id = 0;
for (int i = 2;i <= cnt;++i){
int u = e[i].fr , v = e[i].to;
if (col[u] == col[v]){
mi[col[u]] = min(mi[col[u]] , e[i].val);
mx[col[u]] = max(mx[col[u]] , e[i].val);
}
}
for (int i = 1;i <= num;++i){
if (mx[i] - mi[i] > ans){
ans = mx[i] - mi[i];
id = i;
}
}
printf ("%d\n" , ans);
bool fmx = 0 , fmi = 0;
for (int i = 2;i <= cnt;i += 2){
int u = e[i].fr , v = e[i].to;
if (col[u] == id && col[v] == id){
if (e[i].val == mx[id] && !fmx){
fmx = 1;
MF::add(n + 1 , u , 1);
MF::add(n + 1 , v , 1);
}else if (e[i].val == mi[id] && !fmi){
fmi = 1;
MF::add(u , n + 2 , 1);
MF::add(v , n + 2 , 1);
}else{
MF::add(u , v , 1);
MF::add(v , u , 1);
}
}
}
MF::dinic();
MF::solve();
int sz = v1.size() + v2.size();
printf ("%d\n" , sz);
for (auto x : v1)printf ("%d " , x);
reverse(v2.begin() , v2.end());
for (auto x : v2)printf ("%d " , x);
return 0;
}
/*
5 7
1 2 1
1 3 -2
2 3 1
3 4 3
4 5 1
1 5 -1
2 5 2
5 6
1 2 10
1 3 1
2 3 1
3 4 1
3 5 1
4 5 -10
*/
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 9892kb
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 5 1 3
result:
ok ok
Test #2:
score: 0
Accepted
time: 14ms
memory: 12708kb
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 37 96048 4697 44442 68883 69259 57672 29557 99016 25485 2440 31171 95092 34883 46301 96778 37694 88289 30288 68523 54073 84997 89628 67966 84407 3463 72825 51491 87712 96230 22074 72089 76022 86665 92617 74677 86274 94991
result:
ok ok
Test #3:
score: 0
Accepted
time: 15ms
memory: 12368kb
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 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 98098
result:
ok ok
Test #4:
score: 0
Accepted
time: 15ms
memory: 12624kb
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 36 50114 35807 13570 79841 32897 75496 85914 55808 57640 58540 79605 55857 61993 46598 303 11395 92249 27866 23026 83298 1652 76013 29864 53838 83048 87468 51728 75902 5449 70238 97838 83656 91542 28078 78849 80694
result:
ok ok
Test #5:
score: 0
Accepted
time: 15ms
memory: 12236kb
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 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 6675
result:
ok ok
Test #6:
score: 0
Accepted
time: 13ms
memory: 14444kb
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 29915 78216 34081 11281 68921 58191 48440 3783 3308 58464 1917 30739 77560 4369 46983 74019 64478 81854 65221 16812 67249 25934 42296 85525 18913
result:
ok ok
Test #7:
score: 0
Accepted
time: 14ms
memory: 11600kb
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 38379 67362 37704 53517 23254 1066 28267 79904 54151 24450 79459 52647 10570 24822 96587 8030 37095 66385 91374 70789 41482 30145 90743 13465 63827 91154 38051 24890 82877 61378 4358 24485 97465 31390 67183 42006 3750 74141 92093 19383 58919 73608 27325 12024 60168 16150 13711 23879 39...
result:
ok ok
Test #8:
score: 0
Accepted
time: 14ms
memory: 12496kb
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 35 85762 67090 45494 360 38113 30847 84363 71599 12093 31895 24073 85692 74104 1877 2351 49296 67396 29807 28454 75450 46673 3381 93146 3710 58078 58830 32497 42546 8333 97340 50615 1904 47913 25273 64559
result:
ok ok
Test #9:
score: 0
Accepted
time: 14ms
memory: 14440kb
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 23 84999 46153 9524 70428 40199 72954 63179 91872 86737 52773 85483 30214 53000 97526 57891 56013 66274 62402 58361 3092 73442 44630 31140
result:
ok ok
Test #10:
score: 0
Accepted
time: 12ms
memory: 14344kb
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 13782 6259 19871 82375 93178 40446 51377 3209 48876 53143 61912 65439 55069 80688 84372 3529 41657
result:
ok ok
Test #11:
score: 0
Accepted
time: 14ms
memory: 12232kb
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 40 26033 13417 16174 96840 17104 90176 15965 62781 4719 36613 28616 12538 44860 65474 24802 81816 26100 82891 92172 33954 39284 95939 95763 65480 15155 6162 20549 19346 1019 61488 71601 64840 72086 41533 78871 84539 35258 80696 93511 11993
result:
ok ok
Test #12:
score: -100
Wrong Answer
time: 38ms
memory: 23592kb
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 59632 79643 37280 71306 40096 5554 25291 37401 68116 11903 62056 58809 6365 3574 65862 23850 57161 50170 42566 44274 11751 21406 42594 52409 73528 47295 21188 25284 13655 44843 43087 36973 78428 59898 31146 50116 62128 28220 56068 64331 40264 51819 60784 61422 14983 20524 29265 15997 6810...
result:
wrong answer Cycle contains repeated edge 21412-45538