Submission #31314

# Submission time Handle Problem Language Result Execution time Memory
31314 2017-08-18T00:02:17 Z imaxblue Pipes (BOI13_pipes) C++14
56.6 / 100
366 ms 21220 KB
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define mp make_pair
#define pb push_back
#define x first
#define y second
#define pii pair<int, int>
#define p3i pair<pii, int>
#define pll pair<ll, ll>
#define p3l pair<pll, ll>
#define lseg L, (L+R)/2, N*2+1
#define rseg (L+R)/2+1, R, N*2+2
#define ub upper_bound
#define lb lower_bound
#define pq priority_queue
#define MN 1000000007
#define fox(zqfmgb, x) for (int zqfmgb=0; zqfmgb<x; ++zqfmgb)
#define fox1(zqfmgb, x) for (int zqfmgb=1; zqfmgb<=x; ++zqfmgb)
#define foxr(zqfmgb, x) for (int zqfmgb=x-1; zqfmgb>=0; --zqfmgb)
#define fox1r(zqfmgb, x) for (int zqfmgb=x; zqfmgb>0; --zqfmgb)
#define ms multiset
#define flood(x) memset(x, 0x3f3f3f3f, sizeof x)
#define drain(x) memset(x, 0, sizeof x)

int n, m, a, b, N, C;
int c[100005], f[500005], k;
int in[100005];
bool u[100005];
vector<pii> v[100005], s;
queue<int> q;
void dfs(int N, int P){
    //cout << N << ' ' << C << endl;
    if (u[N]){
        //cout << "*" << endl;
        if (u[N]==C){
            cout << 0 << endl;
            exit(0);
        }
        if (in[N]==-1) return;
        s.pb(mp(N, -1));
        fox(l, s.size()-1){
            in[s[l].x]=-1;
            c[s[l+1].x]-=c[s[l].x];
            f[s[l].y]+=c[s[l].x];
            //cout << s[l].y << ' ' << f[s[l].y] << endl;
        }
        k=c[s[0].x]/2;
        fox(l, s.size()-1){
            f[s[l].y]+=k;
            k*=-1;
        }
        s.pop_back();
        return;
    }

    u[N]=C;
    fox(l, v[N].size()){
        if (in[v[N][l].x]==0 || v[N][l].x==P) continue;
        C=3-C;
        s.pb(mp(N, v[N][l].y));
        dfs(v[N][l].x, N);
        s.pop_back();
        C=3-C;
    }
}
int main(){
    cin.tie(0);
    cin.sync_with_stdio(0);
    cout.tie(0);
    cout.sync_with_stdio(0);
    cin >> n >> m;
    fox1(l, n) cin >> c[l];
    fox(l, m){
        cin >> a >> b;
        v[a].pb(mp(b, l));
        v[b].pb(mp(a, l));
        in[a]++; in[b]++;
    }
    fox1(l, n){
        if (in[l]==1) q.push(l);
    }
    while(!q.empty()){
        N=q.front(); q.pop();
        if (in[N]!=1) continue;
        in[N]--;
        fox(l, v[N].size()){
            if (in[v[N][l].x]==0) continue;
            c[v[N][l].x]-=c[N];
            f[v[N][l].y]=c[N];
            //cout << N << ' ' << v[N][l].y << ' ' << c[N] << endl;
            in[v[N][l].x]--;
            if (in[v[N][l].x]==1) q.push(v[N][l].x);
        }
    }
    fox1(l, n){
        if (in[l]==0 || u[l]) continue;
        C=1;
        dfs(l, -1);
    }
    for (int l=0; l<m; ++l){
        f[l]*=2;
        cout << f[l] << endl;
    }
    return 0;
}

Compilation message

pipes.cpp: In function 'void dfs(int, int)':
pipes.cpp:18:49: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
 #define fox(zqfmgb, x) for (int zqfmgb=0; zqfmgb<x; ++zqfmgb)
                                                 ^
pipes.cpp:42:9: note: in expansion of macro 'fox'
         fox(l, s.size()-1){
         ^
pipes.cpp:18:49: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
 #define fox(zqfmgb, x) for (int zqfmgb=0; zqfmgb<x; ++zqfmgb)
                                                 ^
pipes.cpp:49:9: note: in expansion of macro 'fox'
         fox(l, s.size()-1){
         ^
pipes.cpp:18:49: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
 #define fox(zqfmgb, x) for (int zqfmgb=0; zqfmgb<x; ++zqfmgb)
                                                 ^
pipes.cpp:58:5: note: in expansion of macro 'fox'
     fox(l, v[N].size()){
     ^
pipes.cpp: In function 'int main()':
pipes.cpp:18:49: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
 #define fox(zqfmgb, x) for (int zqfmgb=0; zqfmgb<x; ++zqfmgb)
                                                 ^
pipes.cpp:87:9: note: in expansion of macro 'fox'
         fox(l, v[N].size()){
         ^
# Verdict Execution time Memory Grader output
1 Correct 0 ms 7360 KB Output is correct
2 Correct 0 ms 7360 KB Output is correct
3 Correct 0 ms 7360 KB Output is correct
4 Correct 159 ms 11188 KB Output is correct
5 Correct 0 ms 7360 KB Output is correct
6 Correct 0 ms 7360 KB Output is correct
7 Correct 3 ms 7360 KB Output is correct
8 Correct 0 ms 7360 KB Output is correct
9 Correct 0 ms 7360 KB Output is correct
10 Correct 3 ms 7360 KB Output is correct
11 Correct 3 ms 7360 KB Output is correct
12 Correct 0 ms 7360 KB Output is correct
13 Correct 119 ms 10396 KB Output is correct
14 Runtime error 123 ms 11056 KB Execution timed out (wall clock limit exceeded)
15 Runtime error 156 ms 11320 KB Execution timed out (wall clock limit exceeded)
16 Runtime error 116 ms 10660 KB Execution timed out (wall clock limit exceeded)
17 Correct 166 ms 11188 KB Output is correct
18 Correct 169 ms 11320 KB Output is correct
19 Runtime error 129 ms 10528 KB Execution timed out (wall clock limit exceeded)
20 Correct 0 ms 7360 KB Output is correct
21 Correct 6 ms 7360 KB Output is correct
22 Runtime error 119 ms 11320 KB Execution timed out (wall clock limit exceeded)
23 Correct 143 ms 10396 KB Output is correct
24 Runtime error 129 ms 11320 KB Execution timed out (wall clock limit exceeded)
25 Runtime error 106 ms 10660 KB Execution timed out (wall clock limit exceeded)
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 7360 KB Output isn't correct
2 Incorrect 3 ms 7360 KB Output isn't correct
3 Correct 53 ms 15324 KB Output is correct
4 Runtime error 123 ms 18664 KB Execution timed out (wall clock limit exceeded)
5 Correct 46 ms 11056 KB Output is correct
6 Correct 359 ms 21220 KB Output is correct
7 Incorrect 0 ms 7360 KB Output isn't correct
8 Incorrect 3 ms 7360 KB Output isn't correct
9 Correct 0 ms 7360 KB Output is correct
10 Incorrect 0 ms 7360 KB Output isn't correct
11 Incorrect 0 ms 7360 KB Output isn't correct
12 Correct 0 ms 7360 KB Output is correct
13 Correct 0 ms 7360 KB Output is correct
14 Incorrect 0 ms 7360 KB Output isn't correct
15 Incorrect 3 ms 7360 KB Output isn't correct
16 Incorrect 0 ms 7360 KB Output isn't correct
17 Correct 0 ms 7360 KB Output is correct
18 Incorrect 3 ms 7360 KB Output isn't correct
19 Incorrect 0 ms 7360 KB Output isn't correct
20 Correct 0 ms 7360 KB Output is correct
21 Correct 0 ms 7360 KB Output is correct
22 Incorrect 6 ms 7360 KB Output isn't correct
23 Incorrect 116 ms 15436 KB Output isn't correct
24 Incorrect 203 ms 16188 KB Output isn't correct
25 Correct 76 ms 15320 KB Output is correct
26 Correct 83 ms 16624 KB Output is correct
27 Correct 79 ms 13660 KB Output is correct
28 Correct 89 ms 11056 KB Output is correct
29 Correct 213 ms 18580 KB Output is correct
30 Runtime error 156 ms 15124 KB Execution timed out (wall clock limit exceeded)
31 Runtime error 169 ms 19676 KB Execution timed out (wall clock limit exceeded)
32 Incorrect 156 ms 12940 KB Output isn't correct
33 Correct 53 ms 16388 KB Output is correct
34 Correct 53 ms 16432 KB Output is correct
35 Runtime error 146 ms 18660 KB Execution timed out (wall clock limit exceeded)
36 Correct 86 ms 10924 KB Output is correct
37 Correct 366 ms 21220 KB Output is correct
38 Incorrect 203 ms 15416 KB Output isn't correct
39 Incorrect 183 ms 12152 KB Output isn't correct
40 Runtime error 166 ms 15760 KB Execution timed out (wall clock limit exceeded)
41 Correct 89 ms 19680 KB Output is correct
42 Correct 93 ms 16848 KB Output is correct
43 Correct 106 ms 19152 KB Output is correct
44 Correct 79 ms 11056 KB Output is correct
45 Correct 263 ms 19504 KB Output is correct
46 Runtime error 136 ms 14736 KB Execution timed out (wall clock limit exceeded)
47 Runtime error 133 ms 15896 KB Execution timed out (wall clock limit exceeded)
48 Runtime error 149 ms 19416 KB Execution timed out (wall clock limit exceeded)
49 Correct 79 ms 12320 KB Output is correct
50 Runtime error 146 ms 16496 KB Execution timed out (wall clock limit exceeded)
51 Correct 86 ms 15188 KB Output is correct
52 Correct 93 ms 12056 KB Output is correct
53 Correct 303 ms 19372 KB Output is correct
54 Incorrect 173 ms 14544 KB Output isn't correct