結果

問題 No.592 括弧の対応 (2)
ユーザー Hydrogen332Hydrogen332
提出日時 2024-10-02 23:05:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 25 ms / 5,000 ms
コード長 706 bytes
コンパイル時間 2,513 ms
コンパイル使用メモリ 205,832 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 23:05:47
合計ジャッジ時間 3,230 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; i++)

int main() {
    cin.tie(nullptr);
    
    int N;
    cin >> N;
    
    stack<pair<char, int>> st;
    vector<int> ans(N);
    
    rep(i, 0, N) {
        char s;
        cin >> s;
        
        if (st.empty()) {
            st.push({s, i});
        } else {
            if (s == ')' && st.top().first == '(') {
                ans[st.top().second] = i;
                ans[i] = st.top().second;
                st.pop();
            } else {
                st.push({s, i});
            }
        }
    }
    
    rep(i, 0, N) {
        cout << ans[i] + 1 << '\n';
    }
}
0