結果

問題 No.592 括弧の対応 (2)
ユーザー ldsybldsyb
提出日時 2017-11-11 12:52:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 274 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 1,596 ms
コンパイル使用メモリ 171,060 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 16:32:21
合計ジャッジ時間 3,040 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	int n;
	string s;
	cin >> n >> s;
	int ans[n];
	stack<int> st;
	for (int i = 0; i < n; i++) {
		if (s[i] == '(') {
			st.emplace(i);
		} else {
			int a = st.top();
			st.pop();
			ans[i] = a;
			ans[a] = i;
		}
	}
	for (auto &i : ans) {
		cout << i + 1 << endl;
	}
	return 0;
}
0