結果

問題 No.592 括弧の対応 (2)
ユーザー Mcpu3
提出日時 2018-11-30 16:23:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 269 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 571 ms
コンパイル使用メモリ 71,464 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 23:40:36
合計ジャッジ時間 1,995 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 3
権限があれば一括ダウンロードができます

ソースコード

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