結果

問題 No.592 括弧の対応 (2)
ユーザー uenokuuenoku
提出日時 2017-11-10 23:18:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 284 ms / 5,000 ms
コード長 513 bytes
コンパイル時間 1,882 ms
コンパイル使用メモリ 172,220 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-05-03 14:31:03
合計ジャッジ時間 3,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (lli i = 0; i < (n); i++)
#define rrep(i, n) for (lli i = (n)-1; i >= 0; i--)
using namespace std;
using lli = long long int;
int main()
{
    stack<int> st;
    int n;
    cin >> n;
    string s;
    cin >> s;
    int ans[2000005] = {};
    rep(i, n)
    {
        if (s[i] == '(')
            st.push(i);
        else {
            ans[i] = st.top();
            ans[st.top()] = i;
            st.pop();
        }
    }
    rep(i, n) cout << ans[i] + 1 << endl;
}
0