結果
問題 | No.592 括弧の対応 (2) |
ユーザー | kurenai3110 |
提出日時 | 2017-11-10 22:28:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 269 ms / 5,000 ms |
コード長 | 408 bytes |
コンパイル時間 | 532 ms |
コンパイル使用メモリ | 67,736 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-03 12:37:48 |
合計ジャッジ時間 | 1,837 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 240 ms
5,376 KB |
testcase_02 | AC | 243 ms
5,376 KB |
testcase_03 | AC | 269 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <string> #include <stack> using namespace std; int main() { int N; cin >> N; string S; cin >> S; vector<int>A(N); stack<int>st; for (int i = 0; i < S.size(); i++) { if (S[i]==')') { int p = st.top();st.pop(); A[p] = i;A[i] = p; } else st.push(i); } for (int i = 0; i < N; i++)cout << A[i]+1 << endl; return 0; }