結果

問題 No.1778 括弧列クエリ / Bracketed Sequence Query
ユーザー 👑 ygussanyygussany
提出日時 2021-12-07 00:53:10
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 1,682 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 30,032 KB
実行使用メモリ 25,836 KB
最終ジャッジ日時 2023-09-21 16:17:13
合計ジャッジ時間 5,987 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
10,072 KB
testcase_01 AC 69 ms
8,000 KB
testcase_02 AC 67 ms
8,128 KB
testcase_03 AC 57 ms
8,032 KB
testcase_04 AC 71 ms
7,972 KB
testcase_05 AC 67 ms
16,236 KB
testcase_06 AC 40 ms
9,484 KB
testcase_07 AC 6 ms
14,140 KB
testcase_08 AC 141 ms
24,592 KB
testcase_09 AC 17 ms
16,152 KB
testcase_10 AC 62 ms
21,216 KB
testcase_11 AC 51 ms
16,644 KB
testcase_12 AC 72 ms
17,004 KB
testcase_13 AC 135 ms
25,380 KB
testcase_14 AC 54 ms
22,480 KB
testcase_15 AC 2 ms
8,032 KB
testcase_16 AC 142 ms
24,756 KB
testcase_17 AC 145 ms
24,704 KB
testcase_18 AC 143 ms
24,732 KB
testcase_19 AC 144 ms
24,732 KB
testcase_20 AC 148 ms
25,836 KB
testcase_21 AC 2 ms
7,964 KB
testcase_22 AC 2 ms
7,904 KB
testcase_23 AC 86 ms
22,496 KB
testcase_24 AC 92 ms
23,788 KB
testcase_25 AC 116 ms
25,708 KB
testcase_26 AC 239 ms
17,512 KB
testcase_27 AC 75 ms
17,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

typedef struct Edge {
	struct Edge *next;
	int v;
} edge;

int par[200003][20];

int main()
{
	int i, N, Q;
	char S[200003];
	scanf("%d %d", &N, &Q);
	scanf("%s", S);
	
	int u, w, M = 0, stack[200003], head = 0, indeg[200003] = {}, mate[200003], flag[200003];
	edge *adj[200003] = {}, e[200003], *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[200003], q[200003], tail;
	for (i = 1, depth[0] = -1; i <= N; i++) {
		if (indeg[i] != 0 || flag[i] < 0) 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 = par[u][0]; x != 0; par[w][j] = x, x = par[x][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) {
			for (j = 0; par[u][j+1] != par[w][j+1]; j++);
			u = par[u][j];
			w = par[w][j];
		}
		if (u != 0) printf("%d %d\n", u, mate[u]);
		else printf("-1\n");
	}
	fflush(stdout);
	return 0;
}
0