# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
43329 | 2018-03-13T16:37:41 Z | ffresh | 전압 (JOI14_voltage) | C++14 | 95 ms | 16040 KB |
#include <bits/stdc++.h> using namespace std; const int N = 1e5+15,M = 2e5+15; vector<int> adj[N]; int dp2[N],dp[N],depth[N]; bool vis[N]; stack<int> st; int parent[N]; int a[M],b[M]; bool used[M]; void dfs(int root){ vis[root]= 1; st.push(root); for(int i=0;i<adj[root].size();++i){ int id = adj[root][i]; int u = a[id]^b[id]^root; if(!vis[u]){ used[id]= 1; parent[u] = root; depth[u] = depth[root]+1; dfs(u); } } } int main(){ //freopen("input.txt","r",stdin); int n,m,x,y; cin>>n>>m; for(int i=0;i<m;++i){ scanf("%d%d",&a[i],&b[i]); adj[a[i]].push_back(i); adj[b[i]].push_back(i); } for(int i=1;i<=n;++i)if(!vis[i])dfs(i); int numodd= 0; for(int i=0;i<m;++i){ if(!used[i]){ x= a[i],y = b[i]; if(depth[x]<depth[y])swap(x,y); if(depth[x]%2 != depth[y]){ --dp[x],++dp2[y]; } else{ ++dp[x],--dp[y]; ++numodd; } } } int ret=0; if(numodd==1)++ret; while(!st.empty()){ int u = st.top(); int p = parent[u]; st.pop(); if(p==0)continue; if(dp[u]==numodd && dp2[u]==0){ ++ret; } dp[p]+=dp[u]; dp2[p]+=dp2[u]; } cout<<ret<<endl; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 2808 KB | Output is correct |
2 | Correct | 4 ms | 2808 KB | Output is correct |
3 | Correct | 4 ms | 2856 KB | Output is correct |
4 | Correct | 4 ms | 2872 KB | Output is correct |
5 | Incorrect | 4 ms | 3056 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 53 ms | 8580 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 34 ms | 8624 KB | Output is correct |
2 | Correct | 48 ms | 15108 KB | Output is correct |
3 | Correct | 48 ms | 15236 KB | Output is correct |
4 | Incorrect | 3 ms | 15236 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 67 ms | 15236 KB | Output is correct |
2 | Correct | 75 ms | 16040 KB | Output is correct |
3 | Correct | 5 ms | 16040 KB | Output is correct |
4 | Incorrect | 95 ms | 16040 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |