結果

問題 No.408 五輪ピック
ユーザー cormorancormoran
提出日時 2016-10-18 17:49:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,271 bytes
コンパイル時間 1,714 ms
コンパイル使用メモリ 177,256 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-22 12:27:46
合計ジャッジ時間 47,658 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,088 KB
testcase_01 AC 2 ms
9,216 KB
testcase_02 AC 2 ms
8,960 KB
testcase_03 AC 2 ms
10,496 KB
testcase_04 AC 2 ms
9,088 KB
testcase_05 TLE -
testcase_06 AC 9 ms
9,216 KB
testcase_07 AC 12 ms
5,248 KB
testcase_08 AC 113 ms
5,248 KB
testcase_09 AC 15 ms
5,248 KB
testcase_10 AC 9 ms
5,248 KB
testcase_11 AC 8 ms
5,248 KB
testcase_12 AC 14 ms
5,248 KB
testcase_13 TLE -
testcase_14 AC 5 ms
5,248 KB
testcase_15 TLE -
testcase_16 AC 2,303 ms
5,248 KB
testcase_17 AC 63 ms
5,248 KB
testcase_18 AC 20 ms
5,248 KB
testcase_19 AC 17 ms
5,248 KB
testcase_20 AC 6 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 8 ms
5,248 KB
testcase_23 AC 117 ms
5,248 KB
testcase_24 AC 16 ms
5,248 KB
testcase_25 TLE -
testcase_26 AC 17 ms
5,248 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
9,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
#define rep(i, j) for(int i=0; i < (int)(j); i++)
#define repeat(i, j, k) for(int i = (j); i < (int)(k); i++)
#define all(v) v.begin(),v.end()

template<class T> istream& operator >> (istream &is , vector<T> &v) { for(T &a : v) is >> a; return is; }

class Solver {
  public:
    vector<vector<int>> E;
    bool dfs(int dep, int now, set<int> &visited, int start) {
        if(dep == 5 and now == start) return true;
        if(dep >= 5) return false;
        if(visited.count(now)) return false;
        bool flg = false;
        visited.insert(now);
        for(int nxt : E[now]) {            
            flg |= dfs(dep + 1, nxt, visited, start);
        }
        visited.erase(now);
        return flg;
    }
    
    bool solve() {
        int N, M; cin >> N >> M;
        E.resize(N);
        rep(i, M) {
            int a, b; cin >> a >> b;
            a--, b--;
            E[a].push_back(b);
            E[b].push_back(a);
        }
        bool flg = false;
        set<int> visited;
        cout << (dfs(0, 0, visited, 0) ? "YES" : "NO") << endl;
        
        return 0;
    }
};

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    Solver s;
    s.solve();
    return 0;
}
0