結果
問題 | No.629 グラフの中に眠る門松列 |
ユーザー | bal4u |
提出日時 | 2019-07-27 20:35:57 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 3 ms / 4,000 ms |
コード長 | 1,277 bytes |
コンパイル時間 | 415 ms |
コンパイル使用メモリ | 31,488 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 11:11:24 |
合計ジャッジ時間 | 1,679 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 0 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 3 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 3 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | AC | 1 ms
5,376 KB |
testcase_31 | AC | 1 ms
5,376 KB |
testcase_32 | AC | 1 ms
5,376 KB |
testcase_33 | AC | 1 ms
5,376 KB |
testcase_34 | AC | 1 ms
5,376 KB |
testcase_35 | AC | 1 ms
5,376 KB |
testcase_36 | AC | 1 ms
5,376 KB |
testcase_37 | AC | 1 ms
5,376 KB |
testcase_38 | AC | 1 ms
5,376 KB |
testcase_39 | AC | 1 ms
5,376 KB |
testcase_40 | AC | 1 ms
5,376 KB |
testcase_41 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.c: In function 'in': main.c:9:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration] 9 | #define gc() getchar_unlocked() | ^~~~~~~~~~~~~~~~ main.c:15:24: note: in expansion of macro 'gc' 15 | int n = 0, c = gc(); | ^~
ソースコード
// yukicoder: No.629 グラフの中に眠る門松列 // 2019.7.27 bal4u #include <stdio.h> #include <stdlib.h> #include <string.h> #if 1 #define gc() getchar_unlocked() #else #define gc() getchar() #endif int in() { // 非負整数の入力 int n = 0, c = gc(); do n = 10 * n + (c & 0xf); while ((c = gc()) >= '0'); return n; } int N; int a[1003]; int *to[1003], hi[1003]; int check(int x1, int x2, int x3) { if (x1 == x3) return 0; if (x2 > x1 && x2 > x3) return 1; if (x2 < x1 && x2 < x3) return 1; return 0; } int bfs(int par) { int i, j, u; for (i = 0; i < hi[par]; i++) { u = to[par][i]; for (j = 0; j < hi[u]; j++) if (to[u][j] != par) { if (check(a[par], a[u], a[to[u][j]])) return 1; } } return 0; } int main() { int i, M, u, v; int *memo, sz; N = in(); M = in(); for (i = 1; i <= N; i++) a[i] = in(); memo = malloc(M*sizeof(int)*2); sz = 0; while (M--) { memo[sz++] = u = in(), memo[sz++] = v = in(); hi[u]++, hi[v]++; } for (i = 1; i <= N; i++) if (hi[i]) to[i] = malloc(hi[i]*sizeof(int)); memset(hi, 0, sizeof(hi)); i = 0; while (i < sz) { u = memo[i++], v = memo[i++]; to[u][hi[u]++] = v, to[v][hi[v]++] = u; } for (i = 1; i <= N; i++) { if (bfs(i)) { puts("YES"); return 0; } } puts("NO"); return 0; }