QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#864800#4809. Maximum Rangegyydp123_LIMWA 27ms17756kbC++203.0kb2025-01-21 08:33:412025-01-21 08:33:42

Judging History

你现在查看的是最新测评结果

  • [2025-01-21 08:33:42]
  • 评测
  • 测评结果:WA
  • 用时:27ms
  • 内存:17756kb
  • [2025-01-21 08:33:41]
  • 提交

answer

#include<bits/stdc++.h>
#define For(i,j,k) for(int i=(j);i<=(k);++i)
#define ForDown(i,j,k) for(int i=(j);i>=(k);--i)
#define Debug(fmt, args...) fprintf(stderr,"(func %s, line #%d): " fmt,__func__,__LINE__,##args),fflush(stderr)
#define debug(fmt, args...) fprintf(stderr,fmt,##args),fflush(stderr)
#define within :
#define LJY main
using namespace std;
typedef long long ll;
const int N=1e5+5,inf=1e9+7;
mt19937 rnd(chrono::system_clock::now().time_since_epoch().count());
inline int read(){
  char ch=getchar();int x=0,f=1;
  while(ch<'0'||ch>'9'){if(ch=='-') f=-1;ch=getchar();}
  while(ch>='0'&&ch<='9')
    x=(x<<3)+(x<<1)+(ch^48),ch=getchar();
  return x*f;
}
int n,m;
vector<tuple<int,int,int> >G[N];
tuple<int,int,int>E[N];
int dfn[N],low[N],cdfn,stk[N],tp;
int bel[N],bcc,Mx[N],Mn[N],Mnid[N],Mxid[N];
void tarjan(int u,int fa){
  dfn[u]=low[u]=++cdfn;stk[++tp]=u;
  for(auto [v,_,__] within G[u]) if(v!=fa){
    if(!dfn[v]) tarjan(v,u),low[u]=min(low[u],low[v]);
    else low[u]=min(low[u],dfn[v]);
  }if(low[u]==dfn[u]){
    int y;++bcc;Mn[bcc]=inf;Mx[bcc]=-inf;
    while(y=stk[tp--]){bel[y]=bcc;if(y==u) break;}
  }
}
int h[N],dep[N],cur[N],ce=1,s,t;
struct Edge{int v,w,nxt;}e[N<<1];
void addedge(int u,int v){
  debug("%d %d\n",u,v);
  e[++ce]={v,1,h[u]};h[u]=ce;e[++ce]={u,1,h[v]};h[v]=ce;}
vector<int>Ans;
bool bfs(){
  static queue<int>q;while(!q.empty()) q.pop();
  For(i,1,t) dep[i]=0,cur[i]=h[i];dep[s]=1;q.emplace(s);
  while(!q.empty()){
    int u=q.front();q.pop();
    for(int i=h[u];i;i=e[i].nxt) if(e[i].w&&!dep[e[i].v]){
      int v=e[i].v;dep[v]=dep[u]+1;
      if(v==t) return 1;q.emplace(v);
    }
  }return 0;
}
int dfs(int u,int flow){
  if(u==t) return flow;int rec=0;
  for(int&i=cur[u];i;i=e[i].nxt){
    int v=e[i].v,w=e[i].w;
    if(!w||dep[v]!=dep[u]+1) continue;
    int ret=dfs(v,min(flow-rec,e[i].w));
    rec+=ret;e[i].w-=ret;e[i^1].w+=ret;
    if(rec==flow) return flow;
  }return rec;
}
void Dinic(int S,int T){s=S;t=T;while(bfs()) dfs(s,inf);}
void print(int u,int v){
  // debug("%d %d\n",u,v);
  if(u<=n) Ans.emplace_back(u);if(u==v) return;
  for(int i=h[u];i;i=e[i].nxt) if(!e[i].w){e[i].w=inf;print(e[i].v,v);return;}
}
signed LJY(){
  n=read();m=read();
  For(i,1,m){
    int u=read(),v=read(),w=read();E[i]={u,v,w};
    G[u].emplace_back(v,w,i);
    G[v].emplace_back(u,w,i);
  }For(i,1,n) if(!dfn[i]) tarjan(i,0);
  For(i,1,n) for(auto [v,w,id] within G[i]) if(bel[i]==bel[v]){
    if(Mn[bel[i]]>w) Mn[bel[i]]=w,Mnid[bel[i]]=id;
    if(Mx[bel[i]]<w) Mx[bel[i]]=w,Mxid[bel[i]]=id;
  }int ans=0,id=0;
  For(i,1,bcc) if(Mx[i]-Mn[i]>ans) ans=Mx[i]-Mn[i],id=i;
  printf("%d\n",ans);int S=n+1,T=n+2;
  auto [u,v,w]=E[Mnid[id]];addedge(S,u);addedge(S,v);
  tie(u,v,w)=E[Mxid[id]];addedge(u,T);addedge(v,T);
  For(i,1,n) if(bel[i]==id) for(auto [v,w,Id] within G[i])
    if(bel[v]==id&&Id!=Mnid[id]&&Id!=Mxid[id]) addedge(i,v);
  Dinic(S,T);print(S,T);reverse(Ans.begin(),Ans.end());print(S,T);
  printf("%d\n",Ans.size());for(int x within Ans) printf("%d ",x);
  return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 10076kb

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 1 5 4 

result:

ok ok

Test #2:

score: 0
Accepted
time: 27ms
memory: 17300kb

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: 25ms
memory: 14800kb

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 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 70298 99716 98733 71151 55330 83919 83711 38202 85192 45137 41884 42699 87673 23692 

result:

ok ok

Test #4:

score: 0
Accepted
time: 26ms
memory: 17756kb

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
80694 78849 28078 91542 83656 97838 70238 5449 75902 51728 87468 83048 53838 29864 76013 1652 83298 23026 27866 92249 11395 303 46598 61993 55857 79605 58540 57640 55808 85914 75496 32897 79841 13570 35807 50114 

result:

ok ok

Test #5:

score: 0
Accepted
time: 25ms
memory: 16224kb

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: 23ms
memory: 17364kb

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: -100
Wrong Answer
time: 22ms
memory: 14932kb

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
36
60559 24822 39127 23879 13711 16150 60168 12024 27325 73608 58919 19383 92093 74141 3750 42006 67183 31390 97465 24485 4358 39127 24822 10570 52647 79459 24450 54151 79904 28267 1066 23254 53517 37704 67362 38379 

result:

wrong answer Cycle contains repeated edge 24822-39127