QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#413531 | #6745. Delete the Tree | HHY_zZhu# | WA | 59ms | 3756kb | C++20 | 2.5kb | 2024-05-17 17:56:03 | 2024-05-17 17:56:04 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
struct nd{
vector<int>ed;
int col;
int v;
int fa;
}sg[505];
struct pt{
int x;
int y;
};
void add(int x,int y){
sg[x].ed.push_back(y);
sg[y].ed.push_back(x);
}
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
int n;
cin>>n;
for(int i=0;i<n-1;i++){
int x,y;
cin>>x>>y;
add(x,y);
}
for(int i=1;i<=n;i++){
sg[i].v=1;
}
int ndcnt=n;
int opcnt=0;
vector<int>op[505];
while(ndcnt>0){
int rt=0;
opcnt++;
for(int i=1;i<=n;i++){
if(sg[i].v){
rt=i;
break;
}
}
for(int i=1;i<=n;i++){
sg[i].fa=-1;
sg[i].col=0;
}
vector<pt>sv;
auto dfs = [&](auto self, int x) -> void {
int col=1;
if(sg[x].ed.size()>=3)col=0;
for(int i=0;i<sg[x].ed.size();i++){
int y=sg[x].ed[i];
if(sg[x].fa==y){
continue;
}
sg[y].fa=x;
self(self,y);
if(sg[y].col)col=0;
}
sg[x].col=col;
if(col==1){
op[opcnt].push_back(x);
if(sg[x].ed.size()==2){
int y=sg[x].ed[0],z=sg[x].ed[1];
sv.push_back({y,z});
}
sg[x].v=0;
}
};
dfs(dfs,rt);
for(int i=1;i<=n;i++){
for(int j=0;j<sg[i].ed.size();j++){
int flag=1;
for(int k=0;k<op[opcnt].size();k++){
if(sg[i].ed[j]==op[opcnt][k]||i==op[opcnt][k]){
flag=0;
}
}
if(flag)
sv.push_back({i,sg[i].ed[j]});
}
}
for(int i=1;i<=n;i++)sg[i].ed.clear();
for(int i=0;i<sv.size();i++){
add(sv[i].x,sv[i].y);
}
for(int i=1;i<=n;i++){
sg[i].ed.resize(unique(sg[i].ed.begin(),sg[i].ed.end())-sg[i].ed.begin());
}
ndcnt-=op[opcnt].size();
}
cout<<opcnt<<'\n';
for(int i=1;i<=opcnt;i++){
cout<<op[i].size()<<' ';
for(int j=0;j<op[i].size();j++){
cout<<op[i][j]<<' ';
}
cout<<'\n';
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3544kb
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: 1ms
memory: 3596kb
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 183 32 334 254 331 348 54 430 275 410 360 468 140 179 93 327 128 365 122 43 46 399 398 269 130 227 412 61 295 98 30 197 397 95 192 266 48 310 283 127 123 7 154 317 302 158 65 218 306 191 309 210 20 190 204 484 182 429 362 99 92 347 39 488 58 115 228 8 346 111 386 498 408 259 289 333 256 352 26...
result:
ok
Test #3:
score: 0
Accepted
time: 1ms
memory: 3628kb
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 254 337 248 189 330 498 193 89 125 93 327 417 278 312 310 463 478 185 143 253 272 277 91 404 53 68 64 424 78 458 72 5 177 156 218 48 433 137 256 245 329 333 146 131 391 94 237 413 406 65 431 441 233 377 168 118 242 298 259 285 35 63 336 344 260 483 494 465 428 386 313 186 109 414 79 191 440 34...
result:
ok
Test #4:
score: 0
Accepted
time: 1ms
memory: 3620kb
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: -100
Wrong Answer
time: 59ms
memory: 3756kb
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:
2 251 497 262 297 341 357 356 234 113 471 263 427 260 278 362 370 304 3 5 463 313 391 73 418 472 361 41 282 374 142 90 404 392 333 412 315 44 401 325 355 250 67 107 318 274 66 478 275 112 170 196 277 33 375 272 51 32 383 123 239 197 187 420 233 307 402 439 168 329 181 205 344 445 139 403 365 221 474...
result:
wrong answer Integer 97039 violates the range [0, 500]