#include <iostream>
#include <cstdio>
#include <vector>
#define N 3005
using namespace std;
typedef long long ll;
ll n, m, k, s, v[N], cnt[N], v2[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);
}
}
void g(ll p, ll q) {
ll i;
if (v2[p]) {
s += p;
for (p = q; p != k; p = v2[p]) s += p;
return;
}
v2[p] = q;
for (i = 0; i < a[p].size(); i++) {
if (a[p][i] == q) continue;
f(a[p][i], 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;
}
if (n == m) {
for (i = 1; i <= n; i++) {
if (a[i].size() == 3) break;
}
if (i > n) {
cout << n * (n + 1) / 2;
} else {
k = i;
g(i, 0);
cout << s + k;
}
return 0;
}
cout << 0;
return 0;
}
Compilation message
cat.cpp: In function 'void f(ll, ll)':
cat.cpp:15:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (i =0; i < a[p].size(); i++) {
~~^~~~~~~~~~~~~
cat.cpp: In function 'void g(ll, ll)':
cat.cpp:30:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (i = 0; i < a[p].size(); i++) {
~~^~~~~~~~~~~~~
cat.cpp: In function 'int main()':
cat.cpp:69:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (i = 0; i < k1.size(); i++) {
~~^~~~~~~~~~~
cat.cpp:74:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (cnt[i] == k1.size()) s += i;
~~~~~~~^~~~~~~~~~~~
cat.cpp:40:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf ("%lld %lld", &t1, &t2);
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
380 KB |
Output is correct |
3 |
Correct |
2 ms |
376 KB |
Output is correct |
4 |
Correct |
2 ms |
376 KB |
Output is correct |
5 |
Runtime error |
5 ms |
888 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
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 |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
4 ms |
760 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
380 KB |
Output is correct |
3 |
Correct |
2 ms |
376 KB |
Output is correct |
4 |
Correct |
2 ms |
376 KB |
Output is correct |
5 |
Runtime error |
5 ms |
888 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
6 |
Halted |
0 ms |
0 KB |
- |