結果

問題 No.592 括弧の対応 (2)
ユーザー kichirb3kichirb3
提出日時 2018-03-14 07:19:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 243 ms / 5,000 ms
コード長 901 bytes
コンパイル時間 812 ms
コンパイル使用メモリ 77,668 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 01:02:06
合計ジャッジ時間 2,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

// No.592 括弧の対応 (2)
// https://yukicoder.me/problems/no/592
//

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

vector<int> solve(string &S);


int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    int N;
    cin >> N;
    string S;
    cin >> S;
    vector<int> ans = solve(S);
    for (auto i = 1; i < ans.size(); ++i)
        cout << ans[i] << endl;
}

vector<int> solve(string &S) {
    vector<int> res(S.size()+1);
    stack<int> status;
    for (auto i = 0; i < S.size(); ++i) {
        if (S[i] == '(') {
            status.push(i + 1);
        } else if (S[i] == ')') {
            if (!status.empty()) {
                int t = status.top();
                status.pop();
                res[i + 1] = t;
                res[t] = i + 1;
            }
        }
    }
    return res;
}

0