# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
132522 | sean617 | 산만한 고양이 (KOI17_cat) | C++98 | 1059 ms | 24664 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 <iostream>
#include <cstdio>
#include <vector>
#define N 300005
using namespace std;
typedef long long ll;
ll n, m, k, s, v[N], cnt[N];
bool z, u[N];
vector<ll> a[N], k1, k2;
void f(ll p, ll q) {
ll i, num;
if (v[p] == k) {z = 1; return;}
v[p] = k;
for (i =0; i < a[p].size(); i++) {
num = a[p][i];
if (num == q || num == k) continue;
f(num, p);
}
}
int main()
{
ll i, j, t1, t2;
cin >> n >> m;
while (m--) {
scanf ("%lld %lld", &t1, &t2);
a[t1].push_back(t2);
a[t2].push_back(t1);
if (t1 > t2) swap(t1, t2);
if (t1 == t2 -1) u[t1] = 1;
else if (t1 == 1 && t2 == n) u[n] = 1;
else {
k1.push_back(t1);
k2.push_back(t2);
}
}
if (n <= 5000 && m <= 5000) {
for (k = 1; k <= n; k++) {
for (j = 1; j <= n; j++) {
if (v[j] == k || j == k) continue;
z = 0;
f(j, 0);
if (z) break;
}
if (j > n) s += k;
}
cout << s;
return 0;
}
for (i = 1; i <= n; i++) {
if (!u[i]) break;
}
if (i > n) {
for (i = 0; i < k1.size(); i++) {
cnt[k1[i]]++;
cnt[k2[i]]++;
}
for (i = 1; i <= n; i++) {
if (cnt[i] == k1.size()) s += i;
}
cout << s;
return 0;
}
cout << 0;
return 0;
}
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... |