結果
問題 | No.408 五輪ピック |
ユーザー | eitaho |
提出日時 | 2016-08-08 00:23:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 4,048 ms / 5,000 ms |
コード長 | 2,090 bytes |
コンパイル時間 | 916 ms |
コンパイル使用メモリ | 87,576 KB |
実行使用メモリ | 52,736 KB |
最終ジャッジ日時 | 2024-11-07 10:06:33 |
合計ジャッジ時間 | 7,447 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 16 ms
6,016 KB |
testcase_06 | AC | 45 ms
50,688 KB |
testcase_07 | AC | 41 ms
41,984 KB |
testcase_08 | AC | 17 ms
9,856 KB |
testcase_09 | AC | 23 ms
17,664 KB |
testcase_10 | AC | 35 ms
34,816 KB |
testcase_11 | AC | 32 ms
30,336 KB |
testcase_12 | AC | 51 ms
36,864 KB |
testcase_13 | AC | 17 ms
6,784 KB |
testcase_14 | AC | 16 ms
17,920 KB |
testcase_15 | AC | 16 ms
5,248 KB |
testcase_16 | AC | 20 ms
8,704 KB |
testcase_17 | AC | 28 ms
14,848 KB |
testcase_18 | AC | 36 ms
23,424 KB |
testcase_19 | AC | 44 ms
34,432 KB |
testcase_20 | AC | 25 ms
32,128 KB |
testcase_21 | AC | 14 ms
19,456 KB |
testcase_22 | AC | 41 ms
51,200 KB |
testcase_23 | AC | 53 ms
52,608 KB |
testcase_24 | AC | 693 ms
52,480 KB |
testcase_25 | AC | 24 ms
5,376 KB |
testcase_26 | AC | 59 ms
52,736 KB |
testcase_27 | AC | 4,048 ms
5,376 KB |
testcase_28 | AC | 28 ms
28,032 KB |
testcase_29 | AC | 27 ms
27,904 KB |
testcase_30 | AC | 1 ms
5,248 KB |
testcase_31 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:65:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 65 | scanf("%d %d", &N, &M); | ~~~~~^~~~~~~~~~~~~~~~~ main.cpp:69:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 69 | scanf("%d %d", &a, &b); | ~~~~~^~~~~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <sstream> #include <string> #include <vector> #include <stack> #include <queue> #include <set> #include <map> #include <algorithm> #include <cstdio> #include <cstdlib> #include <cstring> #include <cctype> #include <cmath> #include <cassert> #include <climits> #include <numeric> #include <functional> #include <time.h> #include <bitset> #include <emmintrin.h> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> Pii; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define FOR(i, a, b) for (int i = (int)a; i <= (int)b; i++) template<class T> void checkmin(T &a, T b) { if (b < a) a = b; } template<class T> void checkmax(T &a, T b) { if (b > a) a = b; } const int MaxN = 20000; const int MaxM = 50000; int N, M; ll Adj[MaxN][(MaxN + 63) / 64]; Pii E[MaxM]; void solve() { rep(ea, M) { int a = E[ea].first, b = E[ea].second; bool adjA = Adj[0][a >> 6] >> a & 1; bool adjB = Adj[0][b >> 6] >> b & 1; if (!adjA && !adjB) continue; ll eb = lower_bound(E + ea + 1, E + M, Pii(a + 1, 0)) - E; for (; eb < M; eb++) if (E[eb].first != b && E[eb].second != b) { int c = E[eb].first, d = E[eb].second; if (Adj[0][c >> 6] >> c & 1) { if (adjA && Adj[b][d >> 6] >> d & 1 || adjB && Adj[a][d >> 6] >> d & 1) { cout << "YES\n"; return; } } if (Adj[0][d >> 6] >> d & 1) { if (adjA && Adj[b][c >> 6] >> c & 1 || adjB && Adj[a][c >> 6] >> c & 1) { cout << "YES\n"; return; } } } } cout << "NO\n"; } int main() { scanf("%d %d", &N, &M); int mi = 0; rep(i, M) { int a, b; scanf("%d %d", &a, &b); a--; b--; Adj[a][b >> 6] |= 1LL << b; Adj[b][a >> 6] |= 1LL << a; if (a > b) swap(a, b); if (a != 0) E[mi++] = Pii(a, b); } M = mi; sort(E, E + M); solve(); return 0; }