# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
748277 | Username4132 | Paprike (COI18_paprike) | C++14 | 52 ms | 15584 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
#define forn(i, n) for(int i=0; i<(int)n; ++i)
#define PB push_back
const int MAXN=100010;
int n, k, ans, arr[MAXN], par[MAXN], dep[MAXN], order[MAXN];
vector<int> g[MAXN];
void dfs(int v, int p){
par[v]=p;
for(int to:g[v]) if(to!=p) {
dep[to]=dep[v]+1;
dfs(to, v);
}
}
int main(){
scanf("%d %d", &n, &k);
forn(i, n) scanf("%d", &arr[i]), order[i]=i;
forn(i, n-1){
int a, b; scanf("%d %d", &a, &b); --a, --b;
g[a].PB(b), g[b].PB(a);
}
dfs(0, 0);
sort(order, order+n, [](int a, int b){
return dep[a]!=dep[b]? dep[a]>dep[b] : arr[a]<arr[b];
});
forn(i, n-1){
int ind=order[i];
if(arr[ind]+arr[par[ind]]<=k) arr[par[ind]]+=arr[ind];
else ans++;
}
printf("%d\n", ans);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |