結果

問題 No.592 括弧の対応 (2)
ユーザー Mcpu3Mcpu3
提出日時 2018-11-30 16:23:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 274 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 70,856 KB
実行使用メモリ 4,668 KB
最終ジャッジ日時 2023-09-09 06:29:58
合計ジャッジ時間 2,026 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 274 ms
4,376 KB
testcase_02 AC 267 ms
4,668 KB
testcase_03 AC 271 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <stack>
using namespace std;

int main() {
	int N, ans[200000];
	string S;
	stack<int> tmp;
	cin >> N >> S;
	for (int i = 0; i < N; ++i) {
		if (S[i] == '(') tmp.push(i);
		else {
			ans[i] = tmp.top() + 1;
			ans[tmp.top()] = i + 1;
			tmp.pop();
		}
	}
	for (int i = 0; i < N; ++i) cout << ans[i] << endl;
}
0