QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#411386#6745. Delete the TreeHirroWA 6ms3964kbC++141.3kb2024-05-15 12:32:342024-05-15 12:32:34

Judging History

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

  • [2024-05-15 12:32:34]
  • 评测
  • 测评结果:WA
  • 用时:6ms
  • 内存:3964kb
  • [2024-05-15 12:32:34]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
const int N = 1505;
set<int> e[N];
vector<int>a;
int siz[N], tot, root, del[N] = { 0 }, f[N], s[N];
int dfs(int u, int fa) {
	int ans = 0;
	f[u] = fa;
	for (auto& v : e[u]) {
		if (del[v] || v == fa)continue;
		s[u] = v;
		ans |= dfs(v, u);
	}
	if (ans == 0 && e[u].size() <= 2) {
		a.push_back(u);
		return 1;
	}
	return 0;
}
void solve() {
	int n;
	cin >> n;
	for (int i = 1; i < n; i++) {
		int u, v;
		cin >> u >> v;
		e[u].insert(v);
		e[v].insert(u);
	}
	tot = n;
	vector<vector<int>> ans;
	vector<int> b;
	while (tot) {
		b.clear();
		for (int i = 1; i <= n; i++)if (!del[i]){ 
			root = i;
			a.clear();
			dfs(root, 0);
			if (a.size() > b.size())b = a;
		}
		for (auto& u : b) {
			del[u] = 1;
			tot--;
			if (e[u].size() == 1) {
				int v = *e[u].begin();
				e[v].erase(u);
			}
			else if (e[u].size() == 2) {
				int v1 = *e[u].begin();
				int v2 = *e[u].rbegin();
				e[v1].insert(v2), e[v2].insert(v1);
				e[v1].erase(u), e[v2].erase(u);
			}
		}
		ans.push_back(b);
	}
	cout << ans.size() << '\n';
	for (auto& p : ans) {
		cout << p.size() << ' ';
		for (auto& v : p)cout << v << ' ';
		cout << '\n';
	}
}
int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);
	//int t;
	//cin >> t;
	//while (t--)
	solve();

	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

5
1 2
1 3
1 4
4 5

output:

3
3 2 3 5 
1 4 
1 1 

result:

ok 

Test #2:

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

input:

500
183 443
32 443
334 443
254 443
331 443
348 443
54 443
430 443
275 443
410 443
360 443
443 468
140 443
179 443
93 443
327 443
128 443
365 443
122 443
43 443
46 443
399 443
398 443
269 443
130 443
227 443
412 443
61 443
295 443
98 443
30 443
197 443
397 443
95 443
192 443
266 443
48 443
310 443
28...

output:

2
499 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok 

Test #3:

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

input:

500
80 180
80 254
1 180
80 337
180 323
80 248
180 205
80 189
180 480
80 330
180 454
80 498
142 180
80 193
180 346
80 89
180 389
80 125
180 232
80 93
180 228
80 327
180 357
80 417
180 362
80 278
180 316
80 312
163 180
80 310
176 180
80 463
180 210
80 478
180 294
80 185
124 180
80 143
180 339
80 253
1...

output:

3
498 2 4 6 9 11 12 13 14 16 17 19 22 24 25 26 29 30 31 36 37 38 39 40 41 42 44 45 47 49 52 57 58 59 60 66 67 69 70 71 73 74 75 3 5 7 8 10 15 18 20 21 23 27 28 32 33 34 35 43 46 48 50 51 53 54 55 56 61 62 63 64 65 68 72 76 77 78 79 83 86 87 88 89 91 93 94 95 96 98 106 109 111 114 118 120 123 125 126...

result:

ok 

Test #4:

score: 0
Accepted
time: 4ms
memory: 3664kb

input:

500
387 488
301 488
301 413
13 413
13 265
176 265
176 398
74 398
74 241
241 415
386 415
386 448
210 448
210 285
147 285
147 264
19 264
19 314
314 335
54 335
54 261
261 484
425 484
350 425
156 350
156 164
164 420
8 420
8 309
230 309
230 441
408 441
183 408
183 410
204 410
204 318
151 318
151 328
328 ...

output:

9
250 387 301 13 176 74 415 448 285 264 314 54 484 350 164 8 230 408 410 318 328 494 111 21 477 273 133 310 78 480 192 417 471 266 432 424 269 12 308 226 333 234 104 70 434 457 406 179 473 239 227 190 365 79 81 123 416 483 80 338 467 5 470 22 188 212 347 476 332 341 55 270 253 152 362 371 404 89 47 ...

result:

ok 

Test #5:

score: 0
Accepted
time: 4ms
memory: 3636kb

input:

500
147 209
104 147
13 209
209 466
104 485
17 104
13 214
13 179
151 466
176 466
130 485
286 485
17 359
17 178
214 486
55 214
179 350
179 327
151 167
151 498
146 176
102 176
99 130
130 232
286 294
286 389
56 359
330 359
178 488
178 441
440 486
210 486
55 157
55 458
237 350
350 352
327 371
317 327
167...

output:

9
251 27 363 266 311 132 331 337 376 9 292 288 320 100 271 96 465 351 436 220 449 364 490 141 298 199 85 120 434 169 189 140 422 62 223 184 417 19 367 133 450 6 20 59 377 39 477 240 255 25 57 182 198 300 396 291 453 53 156 24 410 116 173 153 306 81 91 61 261 174 423 60 71 149 499 86 322 143 424 158 ...

result:

ok 

Test #6:

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

input:

500
323 449
449 474
198 449
431 449
69 449
336 449
402 449
240 449
43 449
82 449
335 449
86 449
427 449
220 449
26 449
449 477
449 465
73 449
325 449
1 449
144 449
432 449
203 449
443 449
95 323
323 437
323 337
152 323
185 323
323 484
165 323
41 323
322 323
323 334
32 323
118 323
232 323
57 323
323 ...

output:

3
480 3 7 10 14 31 60 107 116 193 233 256 257 266 283 291 295 319 357 363 381 408 429 439 441 494 2 4 6 56 121 135 137 157 174 197 202 239 250 273 289 305 326 355 370 380 399 411 447 451 487 17 34 64 65 83 108 110 126 130 131 141 147 153 187 221 340 358 376 392 394 406 409 416 469 486 5 8 20 27 94 1...

result:

ok 

Test #7:

score: 0
Accepted
time: 4ms
memory: 3964kb

input:

500
274 432
133 274
274 491
274 455
207 274
274 315
265 274
10 274
203 274
274 289
274 474
374 432
414 432
116 274
385 414
274 364
1 491
10 365
432 493
10 306
374 463
5 116
302 385
265 285
127 315
86 127
127 246
282 374
98 302
98 206
282 344
127 391
127 231
62 231
33 231
86 104
211 365
194 206
194 4...

output:

9
274 306 211 155 116 133 203 207 37 146 193 352 436 100 3 72 16 263 137 301 395 163 325 177 300 451 304 368 87 125 361 360 441 240 241 256 259 109 262 106 165 387 337 423 424 69 468 285 289 312 394 187 68 126 96 334 151 103 477 377 428 454 236 416 233 145 467 464 390 500 175 499 139 62 310 246 391 ...

result:

ok 

Test #8:

score: 0
Accepted
time: 4ms
memory: 3688kb

input:

500
50 287
287 496
64 287
287 454
149 287
63 287
287 372
108 287
52 287
287 320
287 406
155 287
287 294
128 287
17 287
259 287
6 287
54 294
128 462
247 287
161 287
128 440
172 287
171 287
156 287
397 496
108 270
350 397
287 432
7 259
54 183
280 320
473 496
50 88
432 494
54 195
79 287
50 94
41 320
70...

output:

9
281 6 17 70 80 486 94 52 63 64 190 79 186 13 487 373 140 177 459 175 212 304 270 149 155 156 329 314 154 217 171 172 247 303 117 359 351 231 472 90 461 311 457 7 183 401 471 69 82 380 182 342 379 325 294 234 167 480 130 191 246 443 236 406 125 494 454 286 39 45 248 37 448 230 399 285 302 357 170 4...

result:

ok 

Test #9:

score: 0
Accepted
time: 2ms
memory: 3692kb

input:

500
93 209
209 367
209 438
209 314
209 332
152 209
209 443
209 471
209 315
209 342
209 459
209 460
209 462
209 211
209 341
191 209
209 329
185 209
209 350
209 468
209 493
209 363
209 224
35 209
209 253
209 212
86 209
204 209
186 209
209 262
193 209
209 275
209 427
141 209
88 209
149 209
209 409
209 ...

output:

9
349 168 384 337 114 277 162 243 102 201 355 435 60 2 13 14 15 24 28 32 33 35 37 38 42 44 46 47 50 51 54 55 59 61 63 64 67 69 73 78 53 270 299 121 434 81 412 71 498 92 137 87 43 119 452 455 494 48 397 374 151 245 192 161 17 335 52 288 297 202 283 371 226 396 10 172 330 390 123 386 353 271 176 25 28...

result:

ok 

Test #10:

score: 0
Accepted
time: 0ms
memory: 3764kb

input:

500
130 139
139 400
130 318
267 318
318 389
21 400
21 36
21 26
267 321
321 401
18 321
200 389
200 307
66 200
36 274
95 274
96 274
26 357
192 357
220 357
385 401
290 385
46 385
18 53
53 301
53 231
166 307
166 287
3 166
66 212
212 410
212 438
95 155
151 155
155 305
41 96
41 478
41 148
112 192
112 137
...

output:

8
333 161 325 136 100 221 254 462 28 241 173 115 314 332 23 235 327 78 16 367 392 468 137 90 374 198 204 315 300 181 156 182 68 110 364 313 405 259 192 263 280 375 344 427 396 302 143 149 32 225 242 159 306 74 56 445 42 276 491 65 69 333 395 285 93 153 352 391 147 220 26 261 473 308 91 480 394 250 1...

result:

ok 

Test #11:

score: 0
Accepted
time: 6ms
memory: 3704kb

input:

500
117 264
117 456
175 264
264 500
2 456
218 456
175 480
175 343
265 500
432 500
2 475
2 487
63 218
218 421
377 480
444 480
84 343
151 343
265 281
133 265
252 432
181 432
346 475
445 475
16 487
330 487
25 63
63 102
79 421
101 421
266 377
142 377
409 444
434 444
84 291
84 284
8 151
151 333
281 358
2...

output:

9
251 204 42 260 254 478 94 452 203 382 49 172 392 427 5 9 12 391 294 338 126 477 150 417 103 139 36 184 179 365 114 303 124 215 123 469 64 347 376 380 231 482 226 465 283 437 159 320 282 397 258 402 227 292 153 154 26 225 74 495 125 462 81 302 193 209 108 485 173 372 383 408 58 304 234 337 214 316 ...

result:

ok 

Test #12:

score: -100
Wrong Answer
time: 4ms
memory: 3756kb

input:

500
33 453
291 377
33 291
73 424
215 392
66 496
66 215
309 424
66 309
246 291
246 309
154 467
454 482
110 184
110 454
154 455
110 455
56 199
155 494
56 155
294 311
102 109
105 225
105 109
289 311
105 289
155 452
289 452
347 455
347 452
113 246
113 347
43 463
232 292
83 386
83 232
299 463
83 299
293 ...

output:

12
213 99 57 121 434 476 405 385 415 219 468 90 339 499 396 119 266 409 378 201 472 268 460 422 198 19 343 315 474 138 295 281 12 26 32 36 39 63 87 100 106 116 122 65 355 403 420 461 329 249 380 363 74 488 354 304 348 417 186 173 477 108 216 428 423 269 5 254 446 98 327 95 408 152 128 15 412 7 500 1...

result:

wrong answer Integer 12 violates the range [0, 10]