結果

問題 No.1778 括弧列クエリ / Bracketed Sequence Query
ユーザー laneguelanegue
提出日時 2021-12-24 13:14:47
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 1,441 bytes
コンパイル時間 2,978 ms
コンパイル使用メモリ 254,376 KB
実行使用メモリ 21,968 KB
最終ジャッジ日時 2024-06-22 13:53:14
合計ジャッジ時間 11,267 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
6,816 KB
testcase_01 AC 192 ms
6,940 KB
testcase_02 AC 186 ms
6,940 KB
testcase_03 AC 172 ms
6,940 KB
testcase_04 AC 191 ms
6,944 KB
testcase_05 AC 137 ms
7,844 KB
testcase_06 AC 89 ms
6,944 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 258 ms
14,344 KB
testcase_09 AC 26 ms
7,232 KB
testcase_10 AC 107 ms
12,108 KB
testcase_11 AC 99 ms
8,864 KB
testcase_12 AC 149 ms
7,864 KB
testcase_13 AC 238 ms
14,132 KB
testcase_14 AC 97 ms
10,600 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 253 ms
13,740 KB
testcase_17 AC 262 ms
14,400 KB
testcase_18 AC 262 ms
14,336 KB
testcase_19 AC 252 ms
14,420 KB
testcase_20 AC 259 ms
14,420 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 154 ms
6,940 KB
testcase_24 AC 154 ms
7,380 KB
testcase_25 AC 227 ms
8,180 KB
testcase_26 AC 299 ms
21,968 KB
testcase_27 AC 201 ms
20,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main(){
	auto input = readln.chomp.split(" ");
	int N = input[0].to!int;
	int Q = input[1].to!int;
	auto S = readln.chomp;
	int[] a = new int[N + 1];
	int[] parent = new int[N + 1];
	int node = 0;
	for(auto i = 1; i <= N; i++){
		if(S[i - 1]=='('){
			parent[i] = node;
			node = i;
		}else{
			a[node] = i;
			a[i] = node;
			parent[i] = parent[node];
			node = parent[node];
		}
	}
	int[][] dbl;
	dbl ~= new int[N + 1];
	auto depth = new int[N + 1];
	for(auto i = 1; i <= N; i++){
		depth[i] = depth[parent[i]] + 1;
		dbl[0][i] = parent[i];
	}
	auto max_depth = depth.maxElement;
	for(auto k = 1; k < max_depth; k *= 2){
		dbl ~= new int[N + 1];
		for(auto i = 1; i <= N; i++){
			dbl[$ - 1][i] = dbl[$ - 2][dbl[$ - 2][i]];
		}
	}
	for(auto q = 0; q < Q; q++){
		input = readln.chomp.split(" ");
		int x = input[0].to!int;
		int y = input[1].to!int;
		if(depth[x] < depth[y]){
			auto t = x;
			x = y;
			y = t;
		}
		auto d = depth[x] - depth[y];
		auto k = 0;
		while(d > 0){
			if(d & 1){
				x = dbl[k][x];
			}
			k++;
			d >>= 1;
		}
		//stderr.writeln([x,y]);
		if(x == a[y] || x == y){
			writefln("%d %d", min(x, a[x]), max(x, a[x]));
			continue;
		}
		for(k = cast(int)dbl.length - 1; k >= 0; k--){
			if(dbl[k][x] != dbl[k][y]){
				x = dbl[k][x];
				y = dbl[k][y];
			}
		}
		//stderr.writeln(">",[x,y]);
		if(parent[x] > 0){
			writefln("%d %d", parent[x], a[parent[x]]);
		}else{
			writeln(-1);
		}
	}
}
0