# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
109155 | njchung99 | 전압 (JOI14_voltage) | C++14 | 148 ms | 15172 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<cstdio>
#include<algorithm>
#include<vector>
#include<cstring>
#include<stack>
using namespace std;
int n, m;
stack<int> st;
pair<int, int> a[200010];
vector<vector<int>> vt;
int par[100010];
int de[100010];
int visited[100010];
int used[100010];
int dp[100010];
int dp1[100010];
int dap = 0;
int odd = 0;
void dfs(int here) {
st.push(here);
visited[here] = 1;
for (int i = 0; i < vt[here].size(); i++) {
int id = vt[here][i];
int next = a[id].first^a[id].second^here;
if (!visited[next]) {
used[id] = 1;
par[next] = here;
de[next] = de[here] + 1;
dfs(next);
}
}
}
int main()
{
scanf("%d %d", &n, &m);
vt.resize(n + 1);
for (int i = 0; i < m; i++) {
int q, w;
scanf("%d %d", &q, &w);
vt[q].push_back(i);
vt[w].push_back(i);
a[i] = { q,w };
}
for (int i = 1; i <= n; i++) {
if(!visited[i])
dfs(i);
}
for (int i = 0; i < m; i++) {
if (used[i])continue;
if (de[a[i].first] < de[a[i].second])
swap(a[i].first, a[i].second);
if (de[a[i].first] % 2 == de[a[i].second] % 2) {
dp[a[i].first]++; dp[a[i].second]--;
odd++;
}
else {
dp1[a[i].first]++; dp1[a[i].second]--;
}
}
if (odd == 1)dap++;
while (st.size()) {
int t = st.top();
int p = par[t];
st.pop();
if (dp[t] == odd && de[t] && dp1[t] == 0)dap++;
dp[p] += dp[t];
dp1[p] += dp1[t];
}
printf("%d\n", dap);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |