# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
930828 |
2024-02-20T13:22:26 Z |
vjudge1 |
Party (POI11_imp) |
C++17 |
|
403 ms |
41144 KB |
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
#define all(x) x.begin(), x.end()
#define INF 0x3f3f3f3f
#define INFLL (ll)0x3f3f3f3f3f3f3f3f
const int MOD = 1e9 + 7, SZ = 1e5 + 10;
const int MAXN = 3e3 + 10;
int32_t main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int n, m;
cin >> n >> m;
int N = n;
vector<vector<int>> vtx(n + 1);
int A[n + 1] = {};
while(m--){
int u, v;
cin >> u >> v;
vtx[u].push_back(v);
vtx[v].push_back(u);
}
// cout << endl;
for(int i = 1; i <= n; i++){
int con[n + 1] = {};
for(int v : vtx[i]){
con[v] = 1;
}
for(int j = 1; j <= n; j++){
if(A[j] || con[j] || j == i) continue;
A[i] = A[j] = 1;
break;
}
}
cout << "ans: ";
for(int i = 1; i <= n; i++){
if(A[i] && N > n / 3){
N--;
continue;
}
cout << i << ' ';
}
cout << endl;
return 0;
}
// by me
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
604 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
6 ms |
1112 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
16 ms |
1628 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
33 ms |
3932 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
91 ms |
11808 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
163 ms |
15460 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
213 ms |
17488 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
279 ms |
19104 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
395 ms |
36116 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
403 ms |
41144 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |