結果

問題 No.2202 贅沢てりたまチキン
ユーザー zezerozezero
提出日時 2023-02-03 22:03:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 597 bytes
コンパイル時間 3,460 ms
コンパイル使用メモリ 169,788 KB
実行使用メモリ 29,824 KB
最終ジャッジ日時 2024-07-02 19:59:40
合計ジャッジ時間 6,194 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 44 ms
29,824 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 134 ms
18,816 KB
testcase_15 AC 136 ms
18,816 KB
testcase_16 AC 109 ms
18,816 KB
testcase_17 AC 109 ms
18,944 KB
testcase_18 AC 53 ms
11,008 KB
testcase_19 AC 90 ms
23,552 KB
testcase_20 WA -
testcase_21 AC 142 ms
19,328 KB
testcase_22 AC 84 ms
5,376 KB
testcase_23 AC 102 ms
5,376 KB
testcase_24 AC 93 ms
5,376 KB
testcase_25 AC 163 ms
20,608 KB
testcase_26 WA -
testcase_27 AC 134 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <map>
#include <set>
#include <queue>
#include <iomanip>
#include <cstring>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
#define rep(i,n) for (int i = 0; i < int(n);i++)

int main(){
  int n,m;
  cin >> n >> m;
  dsu d(2*n);
  for (int i = 0; i < m;i++){
    int a,b;
    cin >> a >> b;
    a--;b--;
    d.merge(a,b+n);
    d.merge(a+n,b);
  }
  if (d.groups().size() == 1){
    cout << "Yes\n";
  }
  else cout << "No" << endl;
  
  return 0;
}
0