QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#864828#4809. Maximum Rangelsj2009WA 179ms36704kbC++146.7kb2025-01-21 09:41:182025-01-21 09:41:18

Judging History

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

  • [2025-01-21 09:41:18]
  • 评测
  • 测评结果:WA
  • 用时:179ms
  • 内存:36704kb
  • [2025-01-21 09:41:18]
  • 提交

answer

#include<bits/stdc++.h>
// #define int long long
// #pragma GCC optimize(3,"Ofast","inline")
#define debug(...) fprintf(stderr,__VA_ARGS__)
#define ll long long
#define bint __int128
#define ull unsigned long long
#define uint unsigned int
#define ld double
#define PII pair<int,int>
#define chkmax(a,b) a=max(a,b)
#define chkmin(a,b) a=min(a,b)
#define rep(k,l,r) for(int k=l;k<=r;++k)
#define per(k,r,l) for(int k=r;k>=l;--k)
#define cl(f,x) memset(f,x,sizeof(f))
#define pcnt(x) __builtin_popcount(x)
#define lg(x) (31-__builtin_clz(x))
using namespace std;
void file_IO() {
    freopen("test.in","r",stdin);
    freopen("test.out","w",stdout);
}
bool M1;
const int INF=0x3f3f3f3f;
const ll INFLL=0x3f3f3f3f3f3f3f3f;
const ld eps=1e-9;
struct Flow {
	static const int N=1e5+5,M=1e6+5;
	int head[N],cur[N],len=1;
	struct node {
		int from,to,nxt,cap,flow;
	}; node edge[M<<1];
	map<PII,int> belong;
	void init() {
		cl(head,0); len=1;
		belong.clear();
	}
	void print(int u,int v,int w) {
		if(w==INF)
			debug("%d %d inf\n",u,v);
		else
			debug("%d %d %d\n",u,v,w);
	}
	void print_edge() {
		for(auto x:belong) {
			int u=x.first.first,v=x.first.second,w=edge[x.second].cap;
			print(u,v,w);
		}
	}
	void add_edge(int u,int v,int w) {
		int &x1=belong[make_pair(u,v)],&x2=belong[make_pair(v,u)];
		edge[++len]={u,v,head[u],w,0}; head[u]=len;
		x1=len;
		edge[++len]={v,u,head[v],w,0}; head[v]=len;
		x2=len;
	}
	int flow(int u,int v) {
		int x=belong[make_pair(u,v)];
		return edge[x].flow;
	}
	bool is_cut(int u,int v) {
		int x=belong[make_pair(u,v)];
		return edge[x].cap==edge[x].flow;
	}
	int d[N]; 
	bool used[N];
	bool bfs(int s,int t,int n) {
		rep(i,0,n) {
			used[i]=false;
			d[i]=0;
		}
		queue<int> q;
		q.push(s); used[s]=true;
		while(!q.empty()) {
			int u=q.front(); q.pop();
			if(u==t)
				return true;
			for(int i=head[u];i;i=edge[i].nxt) {
				int v=edge[i].to,cap=edge[i].cap,flow=edge[i].flow;
				if(!used[v]&&cap>flow) {
					used[v]=true; 
					d[v]=d[u]+1; 
					q.push(v);
				}
			}
		}
		return false;
	}
	int dfs(int u,int flow,int t) {
		if(u==t||!flow)
			return flow;
		int ret=0;
		for(int &i=cur[u];i;i=edge[i].nxt) {
			int v=edge[i].to; 
			if((d[v]==d[u]+1)&&edge[i].cap>edge[i].flow) {
				int delta=dfs(v,min(flow-ret,edge[i].cap-edge[i].flow),t);
				ret+=delta;
				edge[i].flow+=delta;
				edge[i^1].flow-=delta;
				if(ret==flow)
					return ret;
			}
		}
		return ret;
	}
	int dinic(int s,int t,int n) {
		int res=0;
		while(bfs(s,t,n)) {
			rep(i,0,n)
			cur[i]=head[i];
			res+=dfs(s,INF,t);
		}
		return res;
	}
	void reset() {
		rep(i,2,len)
		edge[i].flow=0;
	}
	void reset(int u,int v,int s,int t,int n) {
		dinic(u,s,n);
		dinic(t,v,n);
		int x=belong[make_pair(u,v)];
		edge[x].cap=edge[x].flow=edge[x^1].cap=edge[x^1].flow=0;
	}
	void del(int u,int v) {
		int x=belong[make_pair(u,v)];
		edge[x].cap=edge[x].flow=edge[x^1].cap=edge[x^1].flow=0;
	}
	bool vis[N];
	void get(int u,int n,vector<int> &vec) {
		rep(i,0,n)
		vis[i]=false;
		vec.clear();
		queue<int> q;
		q.push(u);
		vis[u]=true;
		while(!q.empty()) {
			int u=q.front(); q.pop();
			vec.push_back(u);
			for(int i=head[u];i;i=edge[i].nxt) {
				int v=edge[i].to,cap=edge[i].cap,flow=edge[i].flow;
				if(!vis[v]&&cap!=flow) {
					q.push(v);
					vis[v]=true;
				}
			}
		}
	}
}; Flow g;
const int N=1e5+5;
int head[N],len;
struct node {
    int to,w,nxt;
}; node edge[N<<1];
void add_edge(int u,int v,int w) {
    edge[++len]={v,w,head[u]}; head[u]=len;
}
int dfn[N],low[N],p;
bool bridge[N];
void tarjan(int u,int from) {
    dfn[u]=low[u]=++p;
    for(int i=head[u];i;i=edge[i].nxt) {
        int v=edge[i].to,w=edge[i].w;
        if(!dfn[v]) {
            tarjan(v,w);
            chkmin(low[u],low[v]);
            if(low[v]==dfn[v])
                bridge[w]=true,debug("bridge %d\n",w);
        } else if(from!=w)
            chkmin(low[u],dfn[v]);
    }
}
vector<int> vec[N];
bool used[N];
int c;
void dfs(int u) {
    used[u]=true;
    for(int i=head[u];i;i=edge[i].nxt) {
        int v=edge[i].to,w=edge[i].w;
        if(!bridge[w]) {
            vec[c].push_back(w);
            if(!used[v])
                dfs(v);
        }
    }
}
int a[N],b[N],d[N],mne[N],mxe[N];
bool usededge[N],visedge[N];
vector<int> tmp;
void dfs1(int u) {
    tmp.push_back(u);
	int cnt=0;
    for(int i=head[u];i;i=edge[i].nxt) {
        int v=edge[i].to,w=edge[i].w;
        if(usededge[w]) {
			++cnt;
            if(!visedge[w]) {
				visedge[w]=true;
				dfs1(v);
			}
        }
    }
	assert((cnt+1)&1);
}
void solve() {
    int n,m;
    scanf("%d%d",&n,&m);
    rep(i,1,m) {
        scanf("%d%d%d",&a[i],&b[i],&d[i]);
        add_edge(a[i],b[i],i);
        add_edge(b[i],a[i],i);
    }
    rep(i,1,n) {
        if(!dfn[i])
            tarjan(i,0);
    }
    int mx=-INF;
    rep(i,1,n) {
        if(!used[i]) {
            ++c;
            dfs(i);
            sort(vec[c].begin(),vec[c].end());
            vec[c].erase(unique(vec[c].begin(),vec[c].end()),vec[c].end());
            if(vec[c].empty())
                continue;
            for(auto x:vec[c]) {
                if(!mne[c]||d[x]<d[mne[c]])
                    mne[c]=x;
                if(!mxe[c]||d[x]>=d[mxe[c]])
                    mxe[c]=x;
            }
            chkmax(mx,d[mxe[c]]-d[mne[c]]);
        }
    }
    printf("%d\n",mx);
    rep(i,1,c) {
        if(mne[i]&&d[mxe[i]]-d[mne[i]]==mx) {
            // debug("ok\n");
            for(auto x:vec[i]) {
                if(x!=mxe[i]&&x!=mne[i])
                    g.add_edge(a[x],b[x],1);
            }
            int s=0,t=n+1;
            g.add_edge(s,a[mne[i]],1);
            g.add_edge(s,b[mne[i]],1);
            g.add_edge(a[mxe[i]],t,1);
            g.add_edge(b[mxe[i]],t,1);
            g.dinic(s,t,t);
            // g.print_edge();
            usededge[mne[i]]=usededge[mxe[i]]=true;
            for(auto x:vec[i]) {
                if(x!=mxe[i]&&x!=mne[i]) {
                    if(g.flow(a[x],b[x])^g.flow(b[x],a[x]))
                        usededge[x]=true;
                }
            }
            dfs1(a[mne[i]]);
			tmp.pop_back();
            printf("%d\n",(int)tmp.size());
            for(auto x:tmp)
                printf("%d ",x);
            puts("");
            return;
        }
    }
}
bool M2;
// g++ QOJ4809.cpp -std=c++14 -Wall -O2 -o QOJ4809
signed main() {
    // file_IO();
    int testcase=1;
    // scanf("%d",&testcase);
    while(testcase--)
        solve();
    debug("used time = %dms\n",(signed)(1000*clock()/CLOCKS_PER_SEC));
    debug("used memory = %dMB\n",(signed)((&M1-&M2)/1024/1024));
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 14160kb

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: 35ms
memory: 14516kb

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
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 96048 4697 44442 68883 69259 57672 29557 99016 25485 2440 31171 

result:

ok ok

Test #3:

score: 0
Accepted
time: 40ms
memory: 14712kb

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: 43ms
memory: 14680kb

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: 45ms
memory: 14536kb

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: 39ms
memory: 14416kb

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 65221 81854 64478 74019 46983 4369 77560 30739 1917 58464 3308 3783 48440 58191 68921 11281 34081 78216 29915 18913 85525 42296 25934 67249 

result:

ok ok

Test #7:

score: 0
Accepted
time: 40ms
memory: 14672kb

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 3750 74141 92093 19383 58919 73608 27325 12024 60168 16150 13711 23879 39127 24822 10570 52647 79459 24450 54151 79904 28267 1066 23254 53517 37704 67362 38379 60559 24822 96587 8030 37095 66385 91374 70789 41482 30145 90743 13465 63827 91154 38051 24890 82877 61378 4358 24485 97...

result:

ok ok

Test #8:

score: 0
Accepted
time: 44ms
memory: 14664kb

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
2351 1877 74104 85692 24073 31895 12093 71599 84363 30847 38113 360 45494 67090 85762 64559 25273 47913 1904 50615 97340 8333 42546 32497 58830 58078 3710 93146 3381 46673 75450 28454 29807 67396 49296 

result:

ok ok

Test #9:

score: 0
Accepted
time: 45ms
memory: 13208kb

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
70428 9524 46153 84999 31140 44630 73442 3092 58361 62402 66274 56013 57891 97526 53000 30214 85483 52773 86737 91872 63179 72954 40199 

result:

ok ok

Test #10:

score: 0
Accepted
time: 45ms
memory: 14388kb

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
93178 40446 51377 3209 48876 53143 61912 65439 55069 80688 84372 3529 41657 13782 6259 19871 82375 

result:

ok ok

Test #11:

score: 0
Accepted
time: 50ms
memory: 14544kb

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
24802 65474 44860 12538 28616 36613 4719 62781 15965 90176 17104 96840 16174 13417 26033 11993 93511 80696 35258 84539 78871 41533 72086 64840 71601 61488 1019 19346 20549 6162 15155 65480 95763 95939 39284 33954 92172 82891 26100 81816 

result:

ok ok

Test #12:

score: -100
Wrong Answer
time: 179ms
memory: 36704kb

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
73213 63158 51881 27096 43766 63158 29557 31655 73213 35569 11119 42774 48849 71472 29552 44888 57998 39597 25312 3377 34441 8349 58329 3626 34441 41451 71783 3377 57254 37326 25312 31857 52407 39597 29552 42774 51881 44309 495 11609 3626 71553 1903 31984 17494 43196 59971 38713 482...

result:

wrong answer Edge 73213-35569 does not appear in original graph