結果

問題 No.408 五輪ピック
ユーザー h_nosonh_noson
提出日時 2016-09-15 19:07:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,138 bytes
コンパイル時間 761 ms
コンパイル使用メモリ 85,328 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-17 06:09:51
合計ジャッジ時間 128,715 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,600 KB
testcase_01 AC 2 ms
9,984 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
9,600 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 11 ms
11,136 KB
testcase_21 AC 7 ms
9,856 KB
testcase_22 AC 17 ms
9,728 KB
testcase_23 TLE -
testcase_24 AC 24 ms
5,248 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <iomanip>
#include <cassert>
using namespace std;

#define GET_ARG(a,b,c,F,...) F
#define REP3(i,s,e) for (i = s; i <= e; i++)
#define REP2(i,n) REP3 (i,0,(int)(n)-1)
#define REP(...) GET_ARG (__VA_ARGS__,REP3,REP2) (__VA_ARGS__)
#define RREP3(i,s,e) for (i = s; i >= e; i--)
#define RREP2(i,n) RREP3 (i,(int)(n)-1,0)
#define RREP(...) GET_ARG (__VA_ARGS__,RREP3,RREP2) (__VA_ARGS__)
#define DEBUG(x) cerr << #x ": " << x << endl

vector<int> e[20000];
bool used[20000];

bool dfs(int v, int d) {
    if (v == 0 && d == 5) return true;
    bool ret = false;
    used[v] = true;
    for (auto x: e[v]) {
        if (x == 0 && d == 4) ret = true;
        if (!used[x]) ret |= dfs(x,d+1);
    }
    used[v] = false;
    return ret;
}

int main(void) {
    int i, n, m;
    cin >> n >> m;
    REP (i,m) {
        int a, b;
        cin >> a >> b;
        a--; b--;
        e[a].push_back(b);
        e[b].push_back(a);
    }
    if (dfs(0,0))
        cout << "YES" << endl;
    else
        cout << "NO" << endl;
    return 0;
}
0