結果
問題 | No.592 括弧の対応 (2) |
ユーザー | Mister |
提出日時 | 2020-04-15 22:58:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 257 ms / 5,000 ms |
コード長 | 573 bytes |
コンパイル時間 | 932 ms |
コンパイル使用メモリ | 75,340 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-01 19:06:43 |
合計ジャッジ時間 | 2,256 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 253 ms
6,824 KB |
testcase_02 | AC | 252 ms
6,820 KB |
testcase_03 | AC | 257 ms
6,816 KB |
ソースコード
#include <iostream> #include <vector> #include <string> void solve() { int n; std::string s; std::cin >> n >> s; std::vector<int> stk; std::vector<int> ans(n); for (int i = 0; i < n; ++i) { if (s[i] == '(') { stk.push_back(i); } else { int j = stk.back(); stk.pop_back(); ans[i] = j, ans[j] = i; } } for (auto i : ans) std::cout << i + 1 << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }