QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#424049#7854. 这不是一道数据结构题kkkgjyismine410 179ms57100kbC++142.2kb2024-05-28 21:07:132024-05-28 21:07:13

Judging History

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

  • [2024-05-28 21:07:13]
  • 评测
  • 测评结果:10
  • 用时:179ms
  • 内存:57100kb
  • [2024-05-28 21:07:13]
  • 提交

answer

#include<bits/stdc++.h>
#define pb push_back
#define pii pair<int,int>
#define fi first
#define se second
#define mp make_pair
using namespace std;
int n,m,tot;
int deg[200005];
int hd[200005],nxt[400005],to[400005],tt=1;
map<pii,int>vis; 
vector<int>vec[200005];
queue<int>q;
vector<pii>e[200005];
set<int>E[200005];
pii stke[200050];
int taile;
int stk[200500],tail,dfn[200005],low[200005],tt1;
void add(int u,int v){
    nxt[++tt]=hd[u],hd[u]=tt,to[tt]=v;
    nxt[++tt]=hd[v],hd[v]=tt,to[tt]=u;
}
void tarjan(int u,int id){
	dfn[u]=low[u]=++tt1,stk[++tail]=u;
	for(int i=hd[u],v;i;i=nxt[i]){
		v=to[i];if((i^1)==id)continue;
	    if(!dfn[v]){
	    	stke[++taile]=mp(u,v);
	    	tarjan(v,i),low[u]=min(low[u],low[v]);
	    	if(low[v]>=dfn[u]){
	    		++tot;
	    		while(1){
	    			int p=stk[tail--];
	    			++deg[p];
	    			vec[tot].pb(p);
	    			if(p==v)break;
				}vec[tot].pb(u);
				++deg[u];
				while(1){
					pii now=stke[taile--];
					e[tot].pb(now);
					if(now.fi==u)break;
				}
			}
		}else stke[++taile]=mp(u,v),low[u]=min(low[u],dfn[v]);
	}
}
const int mod=1e9+7;
int mul(int x,int y){return 1ll*x*y%mod;}
int fac[200005];
void p0(){puts("0"),exit(0);}
int main(){
	cin>>n>>m;
	for(int i=1;i<=m;++i){
		int u,v;scanf("%d%d",&u,&v);
		if(u>v)swap(u,v);
		if(vis.count(mp(u,v)))continue;
		vis[mp(u,v)]=1;
		add(u,v);
	}
	fac[0]=1;
	for(int i=1;i<=n;++i)fac[i]=mul(i,fac[i-1]);
	tarjan(1,-1);int ans=n;
	for(int i=1;i<=n;++i)ans=mul(ans,fac[deg[i]]);
	memset(deg,0,sizeof(deg));
	for(int i=1;i<=tot;++i){
		if(vec[i].size()<=2)continue;
		ans=mul(ans,2);
		for(int v:vec[i])deg[v]=0,E[v].clear();
		for(auto v:e[i])++deg[v.fi],++deg[v.se],E[v.fi].insert(v.se),E[v.se].insert(v.fi);
		for(int v:vec[i])if(deg[v]==2)q.push(v);
		int Ct=vec[i].size();
		while(!q.empty()){
			int u=q.front();q.pop();
			if(deg[u]!=2)continue;--Ct;
			int p=(*E[u].begin()),x=(*(--E[u].end()));
			--deg[p],--deg[x];
			if(!E[p].count(x)&&!E[x].count(p)){
				++deg[p],++deg[x];
				E[p].insert(x),E[x].insert(p);
			}
			if(deg[p]==2)q.push(p);
			if(deg[x]==2)q.push(x);
		}
		if(Ct>2)p0();
	}cout<<ans<<endl;
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 6ms
memory: 25256kb

input:

7 9
1 2
2 3
3 4
1 5
2 5
2 6
5 6
5 7
6 7

output:

0

result:

wrong answer 1st lines differ - expected: '56', found: '0'

Subtask #2:

score: 5
Accepted

Test #5:

score: 5
Accepted
time: 179ms
memory: 55520kb

input:

200000 199999
76849 117660
190775 11517
36929 136177
161792 186900
165326 184615
74197 120051
7891 83240
121896 35204
83314 195652
104144 158348
71191 182187
122824 50031
108950 179173
165120 190230
156949 181392
171984 82834
96017 30143
58114 108979
38698 90371
185399 171751
139913 99465
71566 1324...

output:

437454115

result:

ok single line: '437454115'

Test #6:

score: 0
Accepted
time: 172ms
memory: 57100kb

input:

200000 199999
6574 23146
34257 69209
155380 164090
110026 127221
193115 99889
5635 174278
55712 77121
26697 49953
22754 96882
63538 126940
194879 165261
41026 41295
30210 92107
74413 48768
21400 93816
132836 161798
106855 181482
139713 172322
188984 22749
138035 187484
119125 94408
106547 197156
855...

output:

113291706

result:

ok single line: '113291706'

Test #7:

score: 0
Accepted
time: 166ms
memory: 56812kb

input:

200000 199999
31632 184606
168095 2953
125939 52574
192991 195231
89249 63587
67762 15189
127486 26911
55580 120635
164243 67832
132583 173571
144167 123204
145229 101807
103885 170616
134195 61189
192909 104601
164109 127893
96486 109669
155596 168629
144450 40523
111830 166912
21452 144116
168225 ...

output:

695768886

result:

ok single line: '695768886'

Test #8:

score: 0
Accepted
time: 164ms
memory: 56832kb

input:

200000 199999
163361 68930
19490 33356
160159 49369
191573 191277
25950 191040
87000 96084
87600 7514
36433 91932
124379 117605
192879 188658
132884 148743
167108 124881
145773 56391
131418 128073
157008 76084
141192 147983
85318 133420
94748 189411
50453 78717
71148 12192
164264 189793
112210 18103...

output:

733222740

result:

ok single line: '733222740'

Subtask #3:

score: 5
Accepted

Dependency #2:

100%
Accepted

Test #9:

score: 5
Accepted
time: 169ms
memory: 56852kb

input:

200000 200000
12724 99480
110070 33803
133108 189774
90549 132698
44107 190886
80834 45073
196688 3535
65325 152337
190962 142430
1881 60227
26322 185955
145062 99829
183113 179795
10631 100971
60798 37230
149752 51457
119906 123989
118777 44821
140764 181969
101534 197139
108651 135722
56961 189607...

output:

845696751

result:

ok single line: '845696751'

Test #10:

score: 0
Accepted
time: 159ms
memory: 55612kb

input:

200000 200000
101889 44867
88241 190435
89839 146284
5148 128828
32602 156348
31195 126576
146414 147950
70778 100220
13083 26015
6144 91822
141590 111136
44593 74957
138472 185562
75610 171998
48845 71030
175023 164685
128735 168341
15747 73835
169514 55205
119817 136636
190706 86265
148598 41994
1...

output:

654417965

result:

ok single line: '654417965'

Test #11:

score: 0
Accepted
time: 160ms
memory: 56752kb

input:

200000 200000
153577 8632
61036 84864
7655 90000
148729 89342
137385 7553
10222 50803
46720 102913
47837 105292
110223 81670
91157 108026
153903 139607
13230 84612
18282 113252
45158 195698
100923 170852
105927 41217
65631 826
105522 53451
173143 188641
176689 86349
150960 193904
15934 34208
72591 1...

output:

30336343

result:

ok single line: '30336343'

Test #12:

score: 0
Accepted
time: 172ms
memory: 56872kb

input:

200000 200000
139569 146207
179144 129709
26078 199032
175722 54209
174513 62650
157339 171357
119600 146013
50746 126175
183634 29260
30876 146213
53398 117000
115599 60981
90560 139790
2685 32865
53251 13733
60624 85594
41186 142244
157755 21032
167206 188574
161858 198651
157000 150869
113701 751...

output:

184856401

result:

ok single line: '184856401'

Subtask #4:

score: 0
Wrong Answer

Test #13:

score: 20
Accepted
time: 0ms
memory: 25024kb

input:

300 305
289 290
34 35
111 140
90 93
233 240
110 271
116 117
12 21
141 142
53 57
21 85
99 102
34 42
183 184
240 264
252 253
223 224
159 160
126 131
112 113
28 33
50 52
204 208
185 188
46 50
262 264
197 199
111 136
259 261
290 294
49 50
263 264
210 212
291 294
203 208
184 185
120 121
111 131
210 240
2...

output:

482487615

result:

ok single line: '482487615'

Test #14:

score: 0
Accepted
time: 3ms
memory: 25032kb

input:

300 320
233 237
208 217
90 92
277 278
226 246
79 80
37 40
1 9
190 191
213 214
94 96
231 232
162 163
9 10
226 227
172 173
168 169
131 135
158 159
133 134
59 60
61 102
52 57
161 180
172 174
84 86
207 208
54 55
9 16
118 119
122 123
166 170
212 215
38 39
264 266
180 196
65 69
287 288
22 23
24 28
201 202...

output:

821115099

result:

ok single line: '821115099'

Test #15:

score: -20
Wrong Answer
time: 3ms
memory: 29144kb

input:

300 350
104 106
257 259
216 298
250 251
147 148
217 218
220 267
284 285
249 250
232 233
145 209
257 258
283 287
232 238
255 256
206 207
189 190
23 25
48 51
75 115
187 193
14 18
90 94
81 82
45 48
90 91
42 44
51 54
154 155
174 175
60 62
82 85
99 100
160 161
216 217
200 202
226 231
255 257
252 253
36 3...

output:

0

result:

wrong answer 1st lines differ - expected: '427803536', found: '0'

Subtask #5:

score: 0
Wrong Answer

Test #18:

score: 0
Wrong Answer
time: 0ms
memory: 29036kb

input:

300 500
279 256
263 65
40 62
236 256
8 193
164 235
242 256
27 219
72 244
49 253
289 261
162 113
196 199
121 222
293 245
33 186
206 279
111 139
97 15
203 24
245 157
184 59
188 90
239 283
42 5
107 108
267 51
200 126
286 282
293 59
42 261
276 216
152 6
92 220
225 69
88 166
179 109
158 144
133 18
147 18...

output:

0

result:

wrong answer 1st lines differ - expected: '159215763', found: '0'

Subtask #6:

score: 0
Wrong Answer

Test #23:

score: 0
Wrong Answer
time: 0ms
memory: 25024kb

input:

300 597
181 11
16 186
144 42
80 274
72 186
238 172
7 268
225 118
198 84
274 214
170 27
181 44
171 74
270 266
20 6
296 108
45 25
32 198
99 86
129 110
281 273
67 47
259 107
277 265
264 145
215 218
264 164
156 281
100 23
284 125
109 280
92 203
108 74
227 171
213 81
262 239
206 111
5 23
90 121
77 274
23...

output:

0

result:

wrong answer 1st lines differ - expected: '600', found: '0'

Subtask #7:

score: 0
Skipped

Dependency #4:

0%

Subtask #8:

score: 0
Skipped

Dependency #1:

0%