QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#102515 | #5252. Deforestation | zswzswzsw# | WA | 49ms | 31716kb | C++14 | 721b | 2023-05-03 14:13:15 | 2023-05-03 14:13:20 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=501000;
int n,W,tA=0;
vector<int>G[N];
int val[N];
int build(void)
{
int u=++tA,siz;
cin>>val[u]>>siz;
for(int i=1;i<=siz;i++)G[u].push_back(build());
return u;
}
int res=0;
bool cmp(int x,int y){
return val[x]<val[y];
}
void DFS(int u)
{
int sum=0;
for(int i=0,v;i<G[u].size();i++)
{
v=G[u][i];
DFS(v);sum+=val[v];
}
sort(G[u].begin(),G[u].end());
int siz=G[u].size()-1;
while(sum>W)++res,sum-=val[G[u][siz]],--siz;
val[u]+=sum;
res+=val[u]/W;val[u]%=W;
return;
}
signed main()
{
cin>>W;
build();
DFS(1);
if(val[1])++res;
cout<<res;
return 0;
}
/*
1
1 1
1 1
1 1
2 0
*/
详细
Test #1:
score: 100
Accepted
time: 41ms
memory: 20704kb
input:
999900000 7339 3 14947 2 12850 3 8986 10 11599 9 8889 10 10711 4 8015 1 11626 0 9492 1 7017 0 8863 0 8632 0 5321 5 9906 0 11687 0 9845 0 10469 0 11708 0 14950 5 11934 0 11922 0 13101 0 12000 0 9082 0 9273 5 12296 0 6119 0 9201 0 12652 0 12957 0 7454 5 12515 0 12976 0 10358 0 13997 0 8371 0 10181 5 8...
output:
1
result:
ok single line: '1'
Test #2:
score: 0
Accepted
time: 33ms
memory: 16784kb
input:
2 1 99999 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 ...
output:
99999
result:
ok single line: '99999'
Test #3:
score: 0
Accepted
time: 40ms
memory: 22184kb
input:
7 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10000 0 10000 2 10...
output:
142862500
result:
ok single line: '142862500'
Test #4:
score: 0
Accepted
time: 49ms
memory: 31716kb
input:
2 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10000 1 10...
output:
500000000
result:
ok single line: '500000000'
Test #5:
score: -100
Wrong Answer
time: 34ms
memory: 18044kb
input:
9717 14907 2 6953 2 10004 2 10949 2 11766 2 14015 2 5640 2 10370 2 6432 2 7602 2 10238 2 9755 2 5788 2 10885 2 11858 2 9182 2 14174 0 12614 0 12080 1 12497 0 7708 2 9108 1 14948 0 9107 1 13540 0 7400 2 6303 2 14462 1 8021 0 7659 1 7232 0 14314 2 9495 1 8459 0 13069 1 5777 0 12734 2 7061 2 12810 2 13...
output:
108570
result:
wrong answer 1st lines differ - expected: '105756', found: '108570'