結果

問題 No.408 五輪ピック
ユーザー tossytossy
提出日時 2016-08-07 12:10:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 905 ms / 5,000 ms
コード長 1,201 bytes
コンパイル時間 695 ms
コンパイル使用メモリ 91,808 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2024-04-24 22:01:45
合計ジャッジ時間 4,856 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 9 ms
5,376 KB
testcase_02 AC 8 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 14 ms
5,376 KB
testcase_06 AC 196 ms
5,376 KB
testcase_07 AC 14 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 11 ms
5,376 KB
testcase_10 AC 135 ms
5,376 KB
testcase_11 AC 122 ms
5,376 KB
testcase_12 AC 15 ms
5,504 KB
testcase_13 AC 13 ms
5,376 KB
testcase_14 AC 67 ms
5,376 KB
testcase_15 AC 15 ms
5,376 KB
testcase_16 AC 15 ms
5,376 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 14 ms
5,376 KB
testcase_19 AC 15 ms
5,376 KB
testcase_20 AC 114 ms
5,376 KB
testcase_21 AC 69 ms
5,376 KB
testcase_22 AC 193 ms
5,376 KB
testcase_23 AC 22 ms
5,376 KB
testcase_24 AC 852 ms
5,376 KB
testcase_25 AC 12 ms
5,376 KB
testcase_26 AC 224 ms
5,504 KB
testcase_27 AC 905 ms
5,376 KB
testcase_28 AC 18 ms
5,376 KB
testcase_29 AC 19 ms
5,376 KB
testcase_30 AC 9 ms
5,376 KB
testcase_31 AC 8 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <string>
#include <cmath>
#include <cassert>
#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
#include <vector>
#include <set>
#include <map>
#include <bitset>
using namespace std;

#define repl(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define rep(i,n) repl(i,0,n)
#define mp(a,b) make_pair(a,b)
#define pb(a) push_back(a)
#define all(x) (x).begin(),(x).end()
#define dbg(x) cout<<#x"="<<x<<endl
#define fi first
#define se second

#define INF 2147483600

#define N 20000
#define M 50000
#define MK (1<<4)
vector<int> graph[N];
int color[N];
bool dp[MK][N];

void dfs(int p, int mask){
  if(dp[mask][p]) return;
  dp[mask][p] = true;
  for(auto to : graph[p]){
    if(to!=0 && (mask&color[to])==0) dfs(to, mask|color[to]);
  }
}

int main(){
  int n,m;
  cin>>n>>m;
  rep(i,m){
    int a,b;
    scanf("%d %d", &a, &b);
    a--;b--;
    graph[a].pb(b);
    graph[b].pb(a);
  }

  color[0]=0;
  rep(reps, 500){
    repl(i,1,n) color[i] = 1<<(rand()%4);
    fill(dp[0], dp[MK], false);
    dfs(0,0);
    for(auto t : graph[0]) if(dp[MK-1][t]){
      cout<<"YES"<<endl;
      return 0;
    }
  }

  cout<<"NO"<<endl;

  return 0;
}
0