結果
問題 | No.1778 括弧列クエリ / Bracketed Sequence Query |
ユーザー | 👑 ygussany |
提出日時 | 2021-12-07 00:36:15 |
言語 | C (gcc 13.3.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,714 bytes |
コンパイル時間 | 360 ms |
コンパイル使用メモリ | 32,180 KB |
実行使用メモリ | 24,448 KB |
最終ジャッジ日時 | 2024-07-07 09:58:56 |
合計ジャッジ時間 | 5,517 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 63 ms
8,420 KB |
testcase_01 | AC | 61 ms
8,840 KB |
testcase_02 | AC | 59 ms
8,184 KB |
testcase_03 | AC | 50 ms
8,844 KB |
testcase_04 | AC | 61 ms
8,244 KB |
testcase_05 | AC | 52 ms
14,800 KB |
testcase_06 | AC | 34 ms
10,748 KB |
testcase_07 | AC | 5 ms
12,328 KB |
testcase_08 | AC | 100 ms
24,196 KB |
testcase_09 | AC | 11 ms
11,136 KB |
testcase_10 | AC | 46 ms
19,328 KB |
testcase_11 | AC | 40 ms
14,464 KB |
testcase_12 | AC | 59 ms
12,416 KB |
testcase_13 | AC | 98 ms
23,680 KB |
testcase_14 | AC | 40 ms
17,664 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | RE | - |
testcase_17 | AC | 103 ms
24,224 KB |
testcase_18 | AC | 103 ms
24,448 KB |
testcase_19 | AC | 102 ms
24,312 KB |
testcase_20 | AC | 105 ms
24,304 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 49 ms
5,632 KB |
testcase_24 | AC | 50 ms
8,248 KB |
testcase_25 | AC | 83 ms
24,244 KB |
testcase_26 | AC | 136 ms
16,512 KB |
testcase_27 | AC | 62 ms
16,640 KB |
ソースコード
#include <stdio.h> typedef struct Edge { struct Edge *next; int v; } edge; int main() { int i, N, Q; char S[200001]; scanf("%d %d", &N, &Q); scanf("%s", S); int u, w, M = 0, stack[100001], head = 0, indeg[200001] = {}, mate[200001], flag[200001]; edge *adj[200001] = {}, e[100001], *p; for (i = 0; i < N; i++) { if (S[i] == '(') stack[head++] = i + 1; else { head--; mate[i+1] = stack[head]; mate[stack[head]] = i + 1; flag[i+1] = -1; flag[stack[head]] = 1; if (head == 0) continue; u = stack[head-1]; w = stack[head]; e[M].v = w; e[M].next = adj[u]; adj[u] = &(e[M++]); indeg[w]++; } } int j, x, depth[200001], par[200001][20], q[100001], tail; for (i = 1, depth[0] = -1; i <= N; i++) { if (indeg[i] != 0 || adj[i] == NULL) continue; q[0] = i; depth[i] = 0; par[i][0] = 0; for (head = 0, tail = 1; head < tail; head++) { u = q[head]; for (p = adj[u]; p != NULL; p = p->next) { w = p->v; depth[w] = depth[u] + 1; par[w][0] = u; for (j = 1, x = u; x != 0; par[w][j] = par[x][j-1], x = par[x][j-1], j++); par[w][j] = 0; q[tail++] = w; } } } for (i = 1; i <= Q; i++) { scanf("%d %d", &u, &w); if (flag[u] < 0) u = mate[u]; if (flag[w] < 0) w = mate[w]; while (depth[u] > depth[w]) { for (j = 0; depth[par[u][j+1]] >= depth[w]; j++); u = par[u][j]; } while (depth[w] > depth[u]) { for (j = 0; depth[par[w][j+1]] >= depth[u]; j++); w = par[w][j]; } while (u != w && depth[u] != 0) { for (j = 0; par[u][j+1] != par[w][j+1]; j++); u = par[u][j]; w = par[w][j]; } if (u == w && u != 0) printf("%d %d\n", u, mate[u]); else printf("-1\n"); } fflush(stdout); return 0; }