結果
| 問題 |
No.408 五輪ピック
|
| コンテスト | |
| ユーザー |
tossy
|
| 提出日時 | 2016-08-07 12:08:50 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,192 bytes |
| コンパイル時間 | 925 ms |
| コンパイル使用メモリ | 93,784 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-07 07:10:37 |
| 合計ジャッジ時間 | 2,976 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 WA * 7 |
ソースコード
#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((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;
}
tossy