結果

問題 No.2780 The Bottle Imp
ユーザー KeiKei
提出日時 2024-06-07 22:53:48
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 4,131 ms
コンパイル使用メモリ 282,568 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-06-08 10:36:29
合計ジャッジ時間 6,522 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 35 ms
5,632 KB
testcase_08 AC 36 ms
5,888 KB
testcase_09 AC 35 ms
5,760 KB
testcase_10 AC 35 ms
5,632 KB
testcase_11 AC 35 ms
5,888 KB
testcase_12 AC 53 ms
7,808 KB
testcase_13 AC 54 ms
7,552 KB
testcase_14 AC 32 ms
5,376 KB
testcase_15 AC 31 ms
5,376 KB
testcase_16 AC 31 ms
5,376 KB
testcase_17 AC 31 ms
5,376 KB
testcase_18 AC 31 ms
5,376 KB
testcase_19 AC 31 ms
5,376 KB
testcase_20 AC 31 ms
5,376 KB
testcase_21 AC 32 ms
5,376 KB
testcase_22 AC 17 ms
5,376 KB
testcase_23 AC 25 ms
5,376 KB
testcase_24 AC 29 ms
5,376 KB
testcase_25 AC 45 ms
6,528 KB
testcase_26 AC 30 ms
5,376 KB
testcase_27 AC 26 ms
6,012 KB
testcase_28 AC 27 ms
6,012 KB
testcase_29 WA -
testcase_30 AC 21 ms
5,504 KB
testcase_31 AC 49 ms
8,192 KB
testcase_32 AC 19 ms
5,376 KB
testcase_33 AC 53 ms
8,704 KB
testcase_34 AC 52 ms
8,832 KB
testcase_35 AC 16 ms
5,376 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 17 ms
5,376 KB
testcase_39 AC 44 ms
7,168 KB
testcase_40 AC 44 ms
7,168 KB
testcase_41 WA -
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main() {
  int N;
  cin >> N;
  vector<vector<int>> E(N);
  for (int i = 0; i < N; i++) {
    int M;
    cin >> M;
    for (int j = 0; j < M; j++) {
      int A;
      cin >> A;
      A--;
      E[i].push_back(A);
    }
  }
  vector<bool> used(N, false);
  queue<int> Q;
  Q.push(0);
  while (!Q.empty()) {
    int v = Q.front();
    used[v] = true;
    Q.pop();
    for (int w : E[v]) {
      if (!used[w]) {
        used[w] = true;
        Q.push(w);
      }
    }
  }
  bool ok = true;
  for (int i = 0; i < N; i++) {
    if (!used[i]) ok = false;
  }
  cout << (ok ? "Yes" : "No") << endl;
}
0