結果
問題 |
No.408 五輪ピック
|
ユーザー |
|
提出日時 | 2016-12-16 11:00:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,662 bytes |
コンパイル時間 | 1,930 ms |
コンパイル使用メモリ | 183,264 KB |
実行使用メモリ | 6,912 KB |
最終ジャッジ日時 | 2024-11-30 10:22:42 |
合計ジャッジ時間 | 19,594 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 30 WA * 2 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector< int > vi; typedef vector< vi > vvi; typedef vector< ll > vl; typedef vector< vl > vvl; typedef pair< int, int > pii; typedef vector< pii > vp; typedef vector< double > vd; typedef vector< vd > vvd; typedef vector< string > vs; template< class T1, class T2 > int upmin( T1 &x, T2 v ){ if( x > v ){ x = v; return 1; } return 0; } template< class T1, class T2 > int upmax( T1 &x, T2 v ){ if( x < v ){ x = v; return 1; } return 0; } const int INF = 0x3f3f3f3f; int N, M; vi A, B; void init(){ cin >> N >> M; A = B = vi( M ); for( int i = 0; i < M; ++i ) cin >> A[ i ] >> B[ i ]; } vvi G; void preprocess(){ G = vvi( N ); for( int i = 0; i < M; ++i ) G[ A[ i ] - 1 ].emplace_back( B[ i ] - 1 ), G[ B[ i ] - 1 ].emplace_back( A[ i ] - 1 ); } void solve(){ vi col( N ); for( int t = 0; t < 2000; ++t ){ for( int i = 1; i < N; ++i ) col[ i ] = rand() % 4; vvi dp( 1 << 4, vi( N ) ); queue< tuple< int, int > > que; for( int u : G[ 0 ] ) dp[ 1 << col[ u ] ][ u ] = 1, que.emplace( 1 << col[ u ], u ); while( not que.empty() ){ int s, u; tie( s, u ) = que.front(); que.pop(); for( int v : G[ u ] ) if( ~s & 1 << col[ v ] ) if( upmax( dp[ s | 1 << col[ v ] ][ v ], 1 ) ) que.emplace( s | 1 << col[ v ], v ); } for( int u : G[ 0 ] ) if( dp[ ( 1 << 4 ) - 1 ][ u ] ) cout << "YES" << endl, exit( 0 ); } cout << "NO" << endl; } signed main(){ ios::sync_with_stdio( 0 ); init(); preprocess(); solve(); return 0; }