結果

問題 No.2780 The Bottle Imp
ユーザー KeiKei
提出日時 2024-06-07 23:00:31
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 706 bytes
コンパイル時間 4,948 ms
コンパイル使用メモリ 280,508 KB
実行使用メモリ 13,088 KB
最終ジャッジ日時 2024-06-08 10:37:08
合計ジャッジ時間 7,769 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
11,520 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 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 32 ms
5,632 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

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);
    }
  }
  auto dfs = [&] (auto dfs, vector<bool> &used, int v, int cnt) -> void {
    if (cnt == N) {
      cout << "Yes" << endl;
      exit(0);
    }
    for (int w : E[v]) {
      if (!used[w]) {
        used[w] = true;
        cnt++;
        dfs(dfs, used, w, cnt);
        cnt--;
        used[w] = false;
      }
    }
  };
  vector<bool> used(N, false);
  used[0] = 1;
  int cnt = 1;
  dfs(dfs, used, 0, cnt);
  cout << "No" << endl;
}
0