結果

問題 No.1563 Same Degree
ユーザー a01sa01toa01sa01to
提出日時 2024-12-03 00:23:02
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 3,831 ms
コンパイル使用メモリ 249,628 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-03 00:23:08
合計ジャッジ時間 5,141 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 36 ms
5,248 KB
testcase_02 AC 35 ms
5,248 KB
testcase_03 AC 36 ms
5,248 KB
testcase_04 AC 37 ms
5,248 KB
testcase_05 AC 35 ms
5,248 KB
testcase_06 AC 38 ms
5,248 KB
testcase_07 AC 38 ms
5,248 KB
testcase_08 AC 38 ms
5,248 KB
testcase_09 AC 39 ms
5,248 KB
testcase_10 AC 38 ms
5,248 KB
testcase_11 AC 16 ms
5,248 KB
testcase_12 AC 31 ms
5,248 KB
testcase_13 AC 81 ms
5,248 KB
testcase_14 AC 93 ms
5,248 KB
testcase_15 AC 62 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  int t;
  cin >> t;
  while (t--) {
    int n, m;
    cin >> n >> m;
    vector<int> deg(n, 0);
    rep(_, m) {
      int u, v;
      cin >> u >> v;
      --u, --v;
      deg[u]++, deg[v]++;
    }
    set<int> st(deg.begin(), deg.end());
    cout << (st.size() != n ? "Yes" : "No") << endl;
  }
  return 0;
}
0