답안 #29323

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
29323 2017-07-19T02:35:34 Z 김동현(#1164) Party (POI11_imp) C++14
0 / 100
1296 ms 37436 KB
#include <bits/stdc++.h>
using namespace std;

int n, m, ind[3010], ad[3010][3010], a[3010];
set<int> ss;

int main(){
	scanf("%d%d", &n, &m);
	for(int i = 0, x, y; i < m; i++){
		scanf("%d%d", &x, &y);
		ad[x][y] = ad[y][x] = 1;
		ind[x]++; ind[y]++;
	}
	iota(a + 1, a + n + 1, 1);
	sort(a + 1, a + n + 1, [](int x, int y){ return ind[x] > ind[y]; });
	for(int i = 1; i <= n / 3; i++) ss.insert(a[i]);
	for(auto &i : ss) printf("%d ", i);
	puts("");
}

Compilation message

imp.cpp: In function 'int main()':
imp.cpp:8:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d%d", &n, &m);
                       ^
imp.cpp:10:24: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d%d", &x, &y);
                        ^
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 37436 KB Output is correct
2 Incorrect 0 ms 37436 KB Nie wszystkie wypisane osoby siê znaja
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 37436 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 13 ms 37436 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 43 ms 37436 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 93 ms 37436 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 309 ms 37436 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 583 ms 37436 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 749 ms 37436 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 873 ms 37436 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1163 ms 37436 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1296 ms 37436 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -