# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
930826 |
2024-02-20T13:21:08 Z |
vjudge1 |
Party (POI11_imp) |
C++17 |
|
397 ms |
55124 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(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 |
13 ms |
1628 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
37 ms |
3804 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
88 ms |
11604 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
158 ms |
15352 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
214 ms |
17488 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
256 ms |
19184 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
329 ms |
47420 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
397 ms |
55124 KB |
Expected integer, but "ans:" found |
2 |
Halted |
0 ms |
0 KB |
- |