# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
462442 |
2021-08-10T14:44:35 Z |
Yeboi |
Pipes (BOI13_pipes) |
C++14 |
|
558 ms |
36532 KB |
#include <bits/stdc++.h>
#define ll long long
#define mod 998244353
#define fastio() ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define rep(i,s) for(ll i=0; i<s ; i++)
#define f(i,a,b) for(ll i(a); i<b ; i++)
const ll INF = 1000000000000000000;
const ll N = 100001;
const ll MOD = 1000000007;
const ll modi = 1000000007;
const ll MAXN = 10000000000;
const ll rootval = 319;
using namespace std;
ll upedge[N];
ll ngood[N];
vector<ll> adj[N];
ll arr[N];
ll par[N];
ll n;
void dfs1(ll v, ll p){
ll sum = 0;
for(auto u : adj[v]){
if(u == p){
continue;
}
else{
if(upedge[u] == -1){
dfs1(u,v);
sum += upedge[u];
}
}
}
upedge[v] = arr[v] - sum;
}
void dfs2(ll v, ll p){
ll sum = 0;
for(auto u : adj[v]){
if(u == p || ngood[u] == -1){
continue;
}
else{
if(upedge[u] == -1){
dfs2(u,v);
sum += upedge[u];
}
}
}
upedge[v] = arr[v] - sum;
}
void parents(ll v, ll p){
for(auto u : adj[v]){
if(u == p){
continue;
}
else{
par[u] = v;
parents(u,v);
}
}
}
void parents2(ll v, ll p){
for(auto u : adj[v]){
if(u == p || ngood[u] == -1){
continue;
}
else{
par[u] = v;
parents2(u,v);
}
}
}
vector<bool> visited;
vector<ll> parent;
ll cycle_start, cycle_end;
bool dfs(ll v, ll par) { // passing vertex and its parent vertex
visited[v] = true;
for (ll u : adj[v]) {
if(u == par) continue; // skipping edge to parent vertex
if (visited[u]) {
cycle_end = v;
cycle_start = u;
return true;
}
parent[u] = v;
if (dfs(u, parent[u]))
return true;
}
return false;
}
vector<ll> find_cycle() {
visited.assign(n, false);
parent.assign(n, -1);
cycle_start = -1;
vector<ll> cycle;
for (ll v = 0; v < n; v++) {
if (!visited[v] && dfs(v, parent[v]))
break;
}
if (cycle_start == -1) {
return cycle;
} else {
vector<ll> cycle;
cycle.push_back(cycle_start);
for (ll v = cycle_end; v != cycle_start; v = parent[v]){
cycle.push_back(v);
}
reverse(cycle.begin(), cycle.end());
return cycle;
}
}
int main(){
fastio();
ll m;
cin >> n >> m;
vector<pair<ll,ll>> edges;
rep(i,n){
cin >> arr[i];
upedge[i] = -1;
}
rep(i,m){
ll u,v;
cin >> u >> v;
--u,--v;
adj[u].push_back(v);
adj[v].push_back(u);
edges.push_back(make_pair(u,v));
}
if(m == n-1){
rep(i,n){
if(adj[i].size() == 1){
upedge[i] = arr[i];
}
}
dfs1(0,-1);
parents(0,-1);
par[0] = -1;
map<pair<ll,ll>,ll> mp;
rep(i,n){
if(par[i] == -1){
continue;
}
else{
mp[{i,par[i]}] = upedge[i];
mp[{par[i],i}] = upedge[i];
}
}
rep(i,edges.size()){
ll u = edges[i].first;
ll v = edges[i].second;
cout << 2*mp[{u,v}] << endl;
}
}
else if(m == n){
// one cycle exists so just find that one cycle done?
vector<ll> cycle = find_cycle();
rep(i,cycle.size()){
ngood[cycle[i]] = -1;
}
if(cycle.size() % 2 == 0){
cout << 0 << endl;
}
else{
rep(j,cycle.size()){
ll i = cycle[j];
dfs2(i,-1);
parents2(i,-1);
par[i] = -1;
}
map<pair<ll,ll>,ll> mp;
map<pair<ll,ll>,ll> mp2;
rep(i,n){
if(par[i] != -1){
mp[{par[i],i}] = upedge[i];
mp[{i,par[i]}] = upedge[i];
mp2[{par[i],i}] = 2*upedge[i];
mp2[{i,par[i]}] = 2*upedge[i];
}
}
rep(i,cycle.size()){
for(auto u : adj[cycle[i]]){
if(ngood[u] == -1){
continue;
}
else{
arr[cycle[i]] = arr[cycle[i]] - mp[{cycle[i],u}];
}
}
}
ll val = arr[cycle[0]];
f(i,1,cycle.size()){
if(i%2 == 1){
val += arr[cycle[i]];
}
else{
val = val - arr[cycle[i]];
}
}
mp2[{cycle[0],cycle[1]}] = val;
f(i,1,cycle.size()-1){
mp2[{cycle[i],cycle[i+1]}] = 2*arr[cycle[i]] - mp2[{cycle[i-1],cycle[i]}];
mp2[{cycle[i+1],cycle[i]}] = mp2[{cycle[i],cycle[i+1]}];
}
mp2[{cycle[cycle.size()-1],cycle[0]}] = 2*arr[cycle[cycle.size()-1]] - mp2[{cycle[cycle.size()-1],cycle[cycle.size()-2]}];
mp2[{cycle[0],cycle[cycle.size()-1]}] = mp2[{cycle[cycle.size()-1],cycle[0]}];
rep(i,edges.size()){
cout << mp2[{edges[i].first,edges[i].second}] << endl;
}
}
}
else if(m > n){
cout << 0 << endl;
}
}
Compilation message
pipes.cpp: In function 'int main()':
pipes.cpp:5:31: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
5 | #define rep(i,s) for(ll i=0; i<s ; i++)
......
151 | rep(i,edges.size()){
| ~~~~~~~~~~~~~~
pipes.cpp:151:9: note: in expansion of macro 'rep'
151 | rep(i,edges.size()){
| ^~~
pipes.cpp:5:31: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
5 | #define rep(i,s) for(ll i=0; i<s ; i++)
......
160 | rep(i,cycle.size()){
| ~~~~~~~~~~~~~~
pipes.cpp:160:9: note: in expansion of macro 'rep'
160 | rep(i,cycle.size()){
| ^~~
pipes.cpp:5:31: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
5 | #define rep(i,s) for(ll i=0; i<s ; i++)
......
167 | rep(j,cycle.size()){
| ~~~~~~~~~~~~~~
pipes.cpp:167:13: note: in expansion of macro 'rep'
167 | rep(j,cycle.size()){
| ^~~
pipes.cpp:5:31: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
5 | #define rep(i,s) for(ll i=0; i<s ; i++)
......
183 | rep(i,cycle.size()){
| ~~~~~~~~~~~~~~
pipes.cpp:183:13: note: in expansion of macro 'rep'
183 | rep(i,cycle.size()){
| ^~~
pipes.cpp:6:32: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
6 | #define f(i,a,b) for(ll i(a); i<b ; i++)
......
194 | f(i,1,cycle.size()){
| ~~~~~~~~~~~~~~~~
pipes.cpp:194:13: note: in expansion of macro 'f'
194 | f(i,1,cycle.size()){
| ^
pipes.cpp:6:32: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
6 | #define f(i,a,b) for(ll i(a); i<b ; i++)
......
203 | f(i,1,cycle.size()-1){
| ~~~~~~~~~~~~~~~~~~
pipes.cpp:203:13: note: in expansion of macro 'f'
203 | f(i,1,cycle.size()-1){
| ^
pipes.cpp:5:31: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
5 | #define rep(i,s) for(ll i=0; i<s ; i++)
......
209 | rep(i,edges.size()){
| ~~~~~~~~~~~~~~
pipes.cpp:209:13: note: in expansion of macro 'rep'
209 | rep(i,edges.size()){
| ^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
2636 KB |
Output isn't correct |
2 |
Incorrect |
2 ms |
2636 KB |
Output isn't correct |
3 |
Incorrect |
4 ms |
2764 KB |
Output isn't correct |
4 |
Incorrect |
398 ms |
23156 KB |
Output isn't correct |
5 |
Incorrect |
2 ms |
2636 KB |
Output isn't correct |
6 |
Incorrect |
2 ms |
2636 KB |
Output isn't correct |
7 |
Incorrect |
2 ms |
2636 KB |
Output isn't correct |
8 |
Incorrect |
2 ms |
2636 KB |
Output isn't correct |
9 |
Incorrect |
5 ms |
2764 KB |
Output isn't correct |
10 |
Incorrect |
5 ms |
2764 KB |
Output isn't correct |
11 |
Incorrect |
5 ms |
2764 KB |
Output isn't correct |
12 |
Incorrect |
4 ms |
2892 KB |
Output isn't correct |
13 |
Incorrect |
260 ms |
19044 KB |
Output isn't correct |
14 |
Incorrect |
317 ms |
22068 KB |
Output isn't correct |
15 |
Incorrect |
328 ms |
23272 KB |
Output isn't correct |
16 |
Incorrect |
310 ms |
20176 KB |
Output isn't correct |
17 |
Incorrect |
359 ms |
23136 KB |
Output isn't correct |
18 |
Incorrect |
376 ms |
23264 KB |
Output isn't correct |
19 |
Incorrect |
330 ms |
26704 KB |
Output isn't correct |
20 |
Incorrect |
2 ms |
2636 KB |
Output isn't correct |
21 |
Incorrect |
4 ms |
2764 KB |
Output isn't correct |
22 |
Incorrect |
331 ms |
23232 KB |
Output isn't correct |
23 |
Incorrect |
249 ms |
18976 KB |
Output isn't correct |
24 |
Incorrect |
360 ms |
23280 KB |
Output isn't correct |
25 |
Incorrect |
276 ms |
19856 KB |
Output isn't correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
2636 KB |
Output is correct |
2 |
Correct |
5 ms |
2892 KB |
Output is correct |
3 |
Correct |
60 ms |
13316 KB |
Output is correct |
4 |
Correct |
50 ms |
9060 KB |
Output is correct |
5 |
Correct |
49 ms |
9168 KB |
Output is correct |
6 |
Correct |
236 ms |
25876 KB |
Output is correct |
7 |
Correct |
2 ms |
2636 KB |
Output is correct |
8 |
Correct |
2 ms |
2636 KB |
Output is correct |
9 |
Correct |
2 ms |
2636 KB |
Output is correct |
10 |
Correct |
2 ms |
2636 KB |
Output is correct |
11 |
Correct |
2 ms |
2636 KB |
Output is correct |
12 |
Correct |
2 ms |
2636 KB |
Output is correct |
13 |
Correct |
2 ms |
2636 KB |
Output is correct |
14 |
Incorrect |
2 ms |
2636 KB |
Output isn't correct |
15 |
Correct |
4 ms |
2892 KB |
Output is correct |
16 |
Correct |
6 ms |
2892 KB |
Output is correct |
17 |
Correct |
2 ms |
2764 KB |
Output is correct |
18 |
Correct |
2 ms |
2636 KB |
Output is correct |
19 |
Correct |
2 ms |
2636 KB |
Output is correct |
20 |
Correct |
2 ms |
2764 KB |
Output is correct |
21 |
Correct |
5 ms |
2764 KB |
Output is correct |
22 |
Correct |
7 ms |
2892 KB |
Output is correct |
23 |
Incorrect |
364 ms |
26852 KB |
Output isn't correct |
24 |
Correct |
495 ms |
33228 KB |
Output is correct |
25 |
Correct |
58 ms |
13280 KB |
Output is correct |
26 |
Correct |
65 ms |
9100 KB |
Output is correct |
27 |
Correct |
71 ms |
8940 KB |
Output is correct |
28 |
Correct |
61 ms |
9524 KB |
Output is correct |
29 |
Correct |
194 ms |
21720 KB |
Output is correct |
30 |
Incorrect |
447 ms |
34976 KB |
Output isn't correct |
31 |
Incorrect |
457 ms |
30632 KB |
Output isn't correct |
32 |
Correct |
558 ms |
36016 KB |
Output is correct |
33 |
Correct |
70 ms |
14212 KB |
Output is correct |
34 |
Correct |
54 ms |
8968 KB |
Output is correct |
35 |
Correct |
80 ms |
9000 KB |
Output is correct |
36 |
Correct |
57 ms |
9308 KB |
Output is correct |
37 |
Correct |
236 ms |
25808 KB |
Output is correct |
38 |
Correct |
501 ms |
33860 KB |
Output is correct |
39 |
Correct |
529 ms |
36288 KB |
Output is correct |
40 |
Correct |
466 ms |
33804 KB |
Output is correct |
41 |
Correct |
79 ms |
16288 KB |
Output is correct |
42 |
Correct |
48 ms |
8824 KB |
Output is correct |
43 |
Correct |
59 ms |
8944 KB |
Output is correct |
44 |
Correct |
47 ms |
9140 KB |
Output is correct |
45 |
Correct |
173 ms |
22784 KB |
Output is correct |
46 |
Incorrect |
502 ms |
36532 KB |
Output isn't correct |
47 |
Correct |
465 ms |
33584 KB |
Output is correct |
48 |
Correct |
434 ms |
31024 KB |
Output is correct |
49 |
Correct |
56 ms |
11408 KB |
Output is correct |
50 |
Correct |
71 ms |
9072 KB |
Output is correct |
51 |
Correct |
49 ms |
9212 KB |
Output is correct |
52 |
Correct |
65 ms |
8884 KB |
Output is correct |
53 |
Correct |
201 ms |
22972 KB |
Output is correct |
54 |
Incorrect |
484 ms |
35424 KB |
Output isn't correct |