結果

問題 No.583 鉄道同好会
ユーザー 👑 CleyL
提出日時 2023-03-26 00:39:06
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 328 bytes
コンパイル時間 968 ms
コンパイル使用メモリ 76,676 KB
最終ジャッジ日時 2025-02-11 18:08:37
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
using namespace std;

int main(){
  int n,m;cin>>n>>m;
  map<int,int> A;
  for(int i = 0; m > i; i++){
    int a,b;cin>>a>>b;
    A[--a]++;A[--b]++;
  }
  int odd = 0;
  for(auto x: A){
    odd += x.second%2;
  }
  if(odd == 0 || odd == 2)cout << "YES" << endl;
  else cout << "NO" << endl;
}
0