結果

問題 No.408 五輪ピック
ユーザー tossytossy
提出日時 2016-08-05 23:04:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,125 bytes
コンパイル時間 844 ms
コンパイル使用メモリ 91,708 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-04-24 16:11:43
合計ジャッジ時間 7,712 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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
vector<int> g[N];
bool  visited[N];

int from;
bool dfs(int f, int d){
  if(d==0){ from=f; fill(visited, visited+N, false); }
  if(d==4){
    rep(i,g[f].size()) if(g[f][i]==from) return true;
    return false;
  }
  visited[f]=true;
  rep(i,g[f].size()) if(!visited[g[f][i]] && dfs(g[f][i], d+1)) return true;
  visited[f]=false;
  return false;
}

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

  if(dfs(1,0)){
    cout<<"YES"<<endl;
    return 0;
  }

  cout<<"NO"<<endl;
  return 0;
}
0