QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#80054 | #4809. Maximum Range | Crysfly | WA | 46ms | 40848kb | C++17 | 4.3kb | 2023-02-21 21:02:17 | 2023-02-21 21:02:19 |
Judging History
answer
// what is matter? never mind.
#include<bits/stdc++.h>
#define For(i,a,b) for(int i=(a);i<=(b);++i)
#define Rep(i,a,b) for(int i=(a);i>=(b);--i)
//#define int long long
using namespace std;
inline int read()
{
char c=getchar();int x=0;bool f=0;
for(;!isdigit(c);c=getchar())f^=!(c^45);
for(;isdigit(c);c=getchar())x=(x<<1)+(x<<3)+(c^48);
if(f)x=-x;return x;
}
#define fi first
#define se second
#define pb push_back
#define mkp make_pair
typedef pair<int,int>pii;
typedef vector<int>vi;
#define maxn 600005
#define inf 0x3f3f3f3f
namespace flow{
int n,s,t,maxflow;
int dep[maxn],cur[maxn];
int tot=1,head[maxn];
struct edge{
int to,nxt,w;
}e[maxn<<1];
void adde(int u,int v,int w){
e[++tot]=(edge){v,head[u],w};
head[u]=tot;
}
void add(int u,int v,int w){
// cout<<"add "<<u<<" "<<v<<" "<<w<<"\n";
adde(u,v,w);
adde(v,u,0);
}
bool bfs(int s,int t)
{
queue<int>q;
For(i,0,n)cur[i]=head[i],dep[i]=inf;
dep[s]=0;q.push(s);
while(!q.empty())
{
int u=q.front();q.pop();
for(int i=head[u];i;i=e[i].nxt)
{
int v=e[i].to;
if(dep[v]==inf&&e[i].w){
dep[v]=dep[u]+1;
if(v==t)return 1;
q.push(v);
}
}
}return dep[t]<inf;
}
int dfs(int u,int t,int minn)
{
if(!minn||u==t)return minn;
int res=0;
for(int i=cur[u];i;i=e[i].nxt)
{
int v=e[i].to;
cur[u]=i;
if(dep[v]!=dep[u]+1)continue;
int flow=dfs(v,t,min(minn,e[i].w));
if(!flow)continue;
res+=flow,minn-=flow;
e[i].w-=flow,e[i^1].w+=flow;
if(!minn)break;
}
if(!res) dep[u]=0;
return res;
}
inline int dinic(int s,int t)
{
int maxflow=0,flow=0;
while(bfs(s,t))while(flow=dfs(s,t,inf))maxflow+=flow;
return maxflow;
}
inline void init(int N,int S,int T){
n=N,s=S,t=T,tot=1,maxflow=0;
For(i,0,n)head[i]=0;
}
}
using flow::add;
int n,m;
struct edge{
int to,nxt,w;
}e[maxn<<1];
int head[maxn],tot=1;
inline void adde(int u,int v,int w){
e[++tot]=(edge){v,head[u],w};
head[u]=tot;
}
int dfn[maxn],low[maxn],bel[maxn],idx,scc,stk[maxn],tp;
int mn[maxn],mx[maxn];
bool cut[maxn<<1];
vi g[maxn];
void tar(int u,int lste){
dfn[u]=low[u]=++idx,stk[++tp]=u;
for(int i=head[u];i;i=e[i].nxt){
int v=e[i].to;
if(i==(lste^1))continue;
if(!dfn[v])tar(v,i),low[u]=min(low[u],low[v]),cut[i]=cut[i^1]=low[v]>dfn[u];
else low[u]=min(low[u],dfn[v]);
}
if(dfn[u]==low[u]){
int v; ++scc;
do v=stk[tp--],bel[v]=scc,g[scc].pb(v);while(v^u);
}
}
int id;
vi buc[maxn];
void solve()
{
cout<<mx[id]-mn[id]<<"\n";
int u1,v1,u2,v2,id1=-1,id2;
For(u,1,n)
for(int i=head[u];i;i=e[i].nxt)
if(bel[u]==id && bel[e[i].to]==id){
if(id1==-1 && e[i].w==mn[id]) u1=u,v1=e[i].to,id1=i;
else if(e[i].w==mx[id]) u2=u,v2=e[i].to,id2=i;
}
int s=0,t=n+1; flow::init(t,s,t);
add(s,u1,1),add(s,v1,1);
add(u2,t,1),add(v2,t,1);
int fir=flow::tot;
For(u,1,n)
for(int i=head[u];i;i=e[i].nxt)
if(bel[u]==id && bel[e[i].to]==id && i!=id1 && i!=id2 && (i^1)!=id1 && (i^1)!=id2)
add(u,e[i].to,1);
int fl=flow::dinic(s,t);
// cout<<"flow "<<fl<<"\n";
assert(fl==2);
vi o1,o2;
For(i,fir+1,flow::tot)
if(i%2==0 && !flow::e[i].w) buc[flow::e[i^1].to].pb(flow::e[i].to);//cout<<flow::e[i^1].to<<" "<<flow::e[i].to<<'\n';
int x=u1;
o1.pb(x);
while(x!=u2 && x!=v2){
assert(buc[x].size());
int y=buc[x].back(); buc[x].pop_back();
o1.pb(x=y);
}
x=v1;
o2.pb(x);
while(x!=(u2^v2^o1.back())){
assert(buc[x].size());
int y=buc[x].back(); buc[x].pop_back();
o2.pb(x=y);
}
while(o2.size()) o1.pb(o2.back()),o2.pop_back();
For(i,1,n) assert(!buc[i].size());
cout<<o1.size()<<"\n"; for(auto x:o1) cout<<x<<" "; exit(0);
}
signed main()
{
n=read(),m=read();
For(i,1,m){
int u=read(),v=read(),w=read();
adde(u,v,w),adde(v,u,w);
}
For(i,1,n)if(!dfn[i])tar(i,0);
For(i,1,scc)mn[i]=inf,mx[i]=-inf;
For(u,1,n)
for(int i=head[u];i;i=e[i].nxt)
if(bel[u]==bel[e[i].to]){
mn[bel[u]]=min(mn[bel[u]],e[i].w);
mx[bel[u]]=max(mx[bel[u]],e[i].w);
}
id=1;
For(i,1,scc)if(mx[i]-mn[i]>mx[id]-mn[id])id=i;
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 6ms
memory: 31672kb
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 1 5 4 3
result:
ok ok
Test #2:
score: 0
Accepted
time: 24ms
memory: 40720kb
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 31171 2440 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 68523 30288 88289 37694 96778 46301 34883 95092
result:
ok ok
Test #3:
score: 0
Accepted
time: 32ms
memory: 40752kb
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 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 23692 87673 42699 41884 45137 85192 38202 83711 83919 55330 71151 98733 99716 70298
result:
ok ok
Test #4:
score: 0
Accepted
time: 46ms
memory: 40848kb
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 11395 303 46598 61993 55857 79605 58540 57640 55808 85914 75496 32897 79841 13570 35807 50114 80694 78849 28078 91542 83656 97838 70238 5449 75902 51728 87468 83048 53838 29864 76013 1652 83298 23026 27866 92249
result:
ok ok
Test #5:
score: 0
Accepted
time: 39ms
memory: 40704kb
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 75593 83884 20678 16385 62720 25891 75176 34179 64174 38274 8778 99809 28745 6675 60056 75072 91957 3186 29873 5185 88236 50628 2518 83283 23798 89787 8975 26922 21107 93559
result:
ok ok
Test #6:
score: 0
Accepted
time: 29ms
memory: 40672kb
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 16812 67249 25934 42296 85525 18913 29915 78216 34081 11281 68921 58191 48440 3783 3308 58464 1917 30739 77560 4369 46983 74019 64478 81854 65221
result:
ok ok
Test #7:
score: -100
Wrong Answer
time: 44ms
memory: 40676kb
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 53 3750 74141 92093 19383 58919 73608 27325 12024 60168 16150 13711 23879 39127 4358 39127 24822 60559 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 244...
result:
wrong answer Cycle contains repeated edge 4358-39127