# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
94914 | 2019-01-25T07:21:03 Z | Retro3014 | Training (IOI07_training) | C++17 | 4 ms | 1016 KB |
#include <iostream> #include <algorithm> #include <vector> #include <stdio.h> #define MAX_N 1000 using namespace std; int N, M; struct S{ int idx, data; }; struct E{ int x, y, z; }; vector<E> e; vector<int> gp[MAX_N+1]; vector<S> gp2[MAX_N+1]; int p[MAX_N+1][15]; int c[MAX_N+1]; int lv[MAX_N+1]; int ans; int dp[MAX_N+1]; void dfs(int x){ for(int i=1; i<15; i++){ p[x][i] = p[p[x][i-1]][i-1]; } for(int i=0; i<gp[x].size(); i++){ if(c[gp[x][i]]==0){ c[gp[x][i]] = 3 - c[x]; p[gp[x][i]][0] = x; lv[gp[x][i]] = lv[x] + 1; dfs(gp[x][i]); } } } int up(int x, int y){ int two = (1<<14); for(int i=14; i>=0; i--){ if(y>=two){ x = p[x][i]; y-=two; } two/=2; } return x; } void dfs2(int x){ dp[x] = 0; for(int i=0; i<gp[x].size(); i++){ if(gp[x][i]!=p[x][0]){ dfs2(gp[x][i]); dp[x]+=dp[gp[x][i]]; } } for(int i=0; i<gp2[x].size(); i++){ int k = 0, pp; pp = up(gp2[x][i].idx, lv[gp2[x][i].idx]-lv[x]-1); for(int j=0; j<gp[x].size(); j++){ if(gp[x][i]!=p[x][0] &&gp[x][i]!=pp){ k+=dp[gp[x][i]]; } } k+=gp2[x][i].data; dp[x] = max(dp[x], k); } return; } int main(){ scanf("%d%d", &N, &M); for(int i=0; i<M; i++){ int a, b, c; scanf("%d%d%d", &a, &b, &c); if(c==0){ gp[a].push_back(b); gp[b].push_back(a); }else{ e.push_back({a, b, c}); ans+=c; } } c[1] = 1; lv[1] = 1; dfs(1); for(int i=0; i<e.size(); i++){ if(c[e[i].x]==c[e[i].y]){ if(lv[e[i].x] > lv[e[i].y]){ int tmp = e[i].x; e[i].x = e[i].y; e[i].y = tmp; } gp2[e[i].x].push_back({e[i].y, e[i].z}); } } dfs2(1); ans-=dp[1]; printf("%d", ans); return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 632 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 888 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 632 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 504 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 632 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 760 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 4 ms | 1016 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 760 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 4 ms | 1016 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |