답안 #516216

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
516216 2022-01-20T16:21:02 Z Mounir Party (POI11_imp) C++14
0 / 100
1277 ms 28376 KB
#include <bits/stdc++.h>
#define all(v) v.begin(), v.end()
#define sz(x) (int)x.size()
#define pb push_back
#define pii pair<int, int>
#define chmin(x, v) x = min(x, v)
#define chmax(x, v) x = max(x, v)
#define x first
#define y second
#define int long long
using namespace std;

signed main(){
      int nNoeuds, nAretes; cin >> nNoeuds >> nAretes;
      vector<int> degres(nNoeuds);
      for (int iArete = 0; iArete < nAretes; ++iArete){
            int noeud, voisin; cin >> noeud >> voisin;
            degres[noeud - 1]++;
            degres[voisin - 1]++;
      }

      int reste = nNoeuds/3;
      for (int noeud = 0; noeud < nNoeuds; ++noeud){
            if (degres[noeud] >= nNoeuds/2 && reste > 0){
                  cout << noeud + 1 << " ";
                  reste--;
            }
      }
      cout << endl;
      return 0;   
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 364 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 21 ms 680 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 53 ms 1164 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 106 ms 2320 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 312 ms 6792 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 561 ms 12328 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 746 ms 16424 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 887 ms 19384 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1057 ms 22720 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1277 ms 28376 KB Nie wszystkie wypisane osoby siê znaja
2 Halted 0 ms 0 KB -