Submission #465440

# Submission time Handle Problem Language Result Execution time Memory
465440 2021-08-16T06:37:10 Z fuad27 Paprike (COI18_paprike) C++17
0 / 100
87 ms 19384 KB
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
#define vii vector<pair<int, int>>
#define vi vector<int>
#define vl vector<long long>
#define vll vector<pair<long long, long long>>
#define mp make_pair
#define pb push_back
#define rep(i, a, b) for(int i = a;i<=b;i++)
#define f first
#define s second
#define FIO ios_base::sync_with_stdio(0);cin.tie(0);
#define start int tt;cin>>tt;rep(testcase, 1, tt)
#define print(k) cout<<"Case #"<<testcase<<": "<<k<<"\n";
#define endl "\n"
#define DEBUG(k) cerr<<k<<"\n";
vector<int> w(100010, 0);
int ans = 0, n, k;
vector<int> g[100010];
int s[100010], a[100010];
void dfs(int v,int p)
{
	s[v]=a[v];
	vector <long long> q;
	for(auto x:g[v])
	{
		if(x!=p)
		{
			dfs(x,v);
			s[v]+=s[x];
			q.push_back(s[x]);
		}
	}
	sort(q.begin(),q.end());
	auto it = q.end();
	it--;
	while(s[v]>k)
	{
		s[v]-=*it;
		ans++;
		it--;
	}
}
void solve() {
	cin >> n >> k;
	rep(i, 1, n)cin>>a[i];
	rep(i, 0, n-1) {
		int x, y;
		scanf("%d %d", &x, &y);
		g[x].push_back(y);
		g[y].push_back(x);
	}
	dfs(1, 0);
	cout<<ans<<endl;
}
int main () {/*
	#ifndef ONLINE_JUDGE
	freopen("stdin", "r", stdin);
	freopen("stdout", "w", stdout);
	freopen("stderr", "w", stderr);
	#endif*/
	int t = 1;
	//cin >> t;
	while(t--) {
		solve();
	}
	return 0;
}

Compilation message

paprike.cpp: In function 'void solve()':
paprike.cpp:51:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   51 |   scanf("%d %d", &x, &y);
      |   ~~~~~^~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 3020 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 87 ms 19384 KB Output is correct
2 Incorrect 86 ms 19372 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 3020 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 3020 KB Output isn't correct
2 Halted 0 ms 0 KB -