# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1125633 | Kerim | Pipes (BOI13_pipes) | C++20 | 52 ms | 12304 KiB |
#include "bits/stdc++.h"
#define ff first
#define ss second
#define ll long long
using namespace std;
const int N = 1e5+5;
vector<pair<int,int> > adj[N];
pair<int, int> par[N];
vector<int> order;
ll a[N], ans[N];
void dfs(int nd, int pr){
for (auto [to, ind]: adj[nd]){
if (to == pr)
continue;
par[to] = {nd, ind};
dfs(to, nd);
}
order.push_back(nd);
}
int main(){
// freopen("file.in", "r", stdin);
int n, m;
scanf("%d%d", &n, &m);
assert(m == n-1);
for (int i = 1; i <= n; i++)
scanf("%lld", a+i);
for (int i = 1; i <= m; i++){
int u, v;
scanf("%d%d", &u, &v);
adj[u].push_back({v, i});
adj[v].push_back({u, i});
}
dfs(1, -1);
for (auto x: order){
ans[par[x].ss] = a[x] * 2;
a[par[x].ff] -= a[x];
x = par[x].ff;
}
if (!a[1]){
for (int i = 1; i <= m; i++)
printf("%lld\n", ans[i]);
}
else
puts("0");
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |