結果
問題 | No.408 五輪ピック |
ユーザー | FF256grhy |
提出日時 | 2016-08-06 00:46:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,447 bytes |
コンパイル時間 | 329 ms |
コンパイル使用メモリ | 24,192 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-11-07 00:26:44 |
合計ジャッジ時間 | 7,177 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 0 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 147 ms
5,248 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:47:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 47 | scanf("%d%d", &n, &m); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:49:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 49 | scanf("%d%d", &a[i], &b[i]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int n, m, a[50000], b[50000], c[50000]; int d[50000]; void sort(int l, int r) { if(r - l < 2) { return; } int mm = (l + r) / 2; sort(l, mm); sort(mm, r); int ll = l, rr = mm, dd = l; while(dd < r) { bool flag; if(rr == r) { flag = true; } else if(ll == mm) { flag = false; } else { flag = (c[ll] <= c[rr]); } if(flag) { d[dd++] = c[ll++]; } else { d[dd++] = c[rr++]; } } for(dd = l; dd < r; dd++) { c[dd] = d[dd]; } return; } bool f(int x, int y) { int z = x * 20000 + y; int l = 0, r = m, mm; while(r - l > 1) { mm = (l + r) / 2; if(c[mm] <= z) { l = mm; } else { r = mm; } } return (c[l] == z); } bool e(int x, int y) { return ( f(x, y) || f(y, x) ); } int main() { scanf("%d%d", &n, &m); for(int i = 0; i < m; i++) { scanf("%d%d", &a[i], &b[i]); a[i]--; b[i]--; c[i] = a[i] * 20000 + b[i]; } sort(0, m); bool flag = false; for(int i = 0; i < m; i++) { for(int j = 0; j < m; j++) { if( a[i] == 0 || b[i] == 0 || a[j] == 0 || b[j] == 0 || a[i] == a[j] || a[i] == b[j] || b[i] == a[j] || b[i] == b[j] ) { continue; } if( ( e(0, a[i]) && e(0, a[j]) && e(b[i], b[j]) ) || ( e(0, a[i]) && e(0, b[j]) && e(b[i], a[j]) ) || ( e(0, b[i]) && e(0, a[j]) && e(a[i], b[j]) ) || ( e(0, b[i]) && e(0, b[j]) && e(a[i], a[j]) ) ) { flag = true; i = j = m; } } } printf("%s\n", flag ? "YES" : "NO"); return 0; }