結果

問題 No.408 五輪ピック
ユーザー h_nosonh_noson
提出日時 2016-09-15 19:41:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,208 bytes
コンパイル時間 1,289 ms
コンパイル使用メモリ 100,192 KB
実行使用メモリ 509,344 KB
最終ジャッジ日時 2024-11-17 06:12:22
合計ジャッジ時間 56,596 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 AC 2 ms
13,768 KB
testcase_05 MLE -
testcase_06 MLE -
testcase_07 AC 19 ms
5,376 KB
testcase_08 MLE -
testcase_09 AC 100 ms
15,744 KB
testcase_10 AC 12 ms
5,248 KB
testcase_11 AC 11 ms
5,248 KB
testcase_12 AC 23 ms
6,272 KB
testcase_13 TLE -
testcase_14 AC 7 ms
5,248 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 AC 125 ms
17,920 KB
testcase_19 AC 59 ms
9,472 KB
testcase_20 AC 5 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 9 ms
5,248 KB
testcase_23 MLE -
testcase_24 AC 105 ms
16,512 KB
testcase_25 TLE -
testcase_26 AC 23 ms
6,016 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
39,712 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];
map<pair<set<int>,int>,bool> memo;

bool dfs(int v, set<int> s) {
    if (memo.count({s,v})) return memo[{s,v}];
    set<int> tmp = s;
    tmp.insert(v);
    bool ret = false;
    for (auto x: e[v]) {
        if (x == 0 && tmp.size() == 5) ret = true;
        if (!tmp.count(x) && tmp.size() < 5) ret |= dfs(x,tmp);
    }
    return memo[{s,v}] = ret;
}

int main(void) {
    int i, n, m;
    scanf("%d%d",&n,&m);
    REP (i,m) {
        int a, b;
        scanf("%d%d",&a,&b);
        a--; b--;
        e[a].push_back(b);
        e[b].push_back(a);
    }
    if (dfs(0,{}))
        puts("YES");
    else
        puts("NO");
    return 0;
}
0