結果
問題 | No.592 括弧の対応 (2) |
ユーザー | okayunonaha |
提出日時 | 2017-11-10 22:29:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 87 ms / 5,000 ms |
コード長 | 953 bytes |
コンパイル時間 | 1,784 ms |
コンパイル使用メモリ | 178,524 KB |
実行使用メモリ | 13,056 KB |
最終ジャッジ日時 | 2024-05-03 12:39:40 |
合計ジャッジ時間 | 2,389 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 63 ms
13,056 KB |
testcase_02 | AC | 59 ms
13,056 KB |
testcase_03 | AC | 87 ms
12,800 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; //typedef long long ll; #define INF (1LL << 31 - 1) #define INFLL ((1LL << 62) - 1) #define MOD int(1e9+7) #define repi(i,j,n) for(int i = (j); i < (n); ++i) #define rep(i,n) repi(i,0,n) #define rrep(i,n) for (int i = n; i >= 0; --i) #define fi first #define se second #define all(v) (v).begin(), (v).end() int vx[8] = {0, 1, 1, 1, 0, -1, -1, -1}, vy[8] = {-1, -1, 0, 1, 1, 1, 0, -1}; inline bool check(int ux, int uy, int x, int y) { return (0 <= x and x < ux and 0 <= y and y < uy); } inline void init() { cin.tie(0); ios::sync_with_stdio(false); } stack<int> st; int n; string s; map<int, int> mp; int main() { init(); cin >> n; cin >> s; rep(i,n) { if (s[i] == ')') { int c = st.top(); st.pop(); mp[c] = i; mp[i] = c; } else { st.push(i); } } rep(i,n) { cout << mp[i] + 1 << "\n"; } return 0; }