結果
問題 | No.22 括弧の対応 |
ユーザー |
|
提出日時 | 2015-08-11 23:57:29 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 524 bytes |
コンパイル時間 | 1,785 ms |
コンパイル使用メモリ | 162,300 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 07:03:23 |
合計ジャッジ時間 | 2,347 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
using namespace std; #include <bits/stdc++.h> #define BEGIN ios_base::sync_with_stdio(0);cin.tie(0); #define END return EXIT_SUCCESS; #define FOR(I,A,B) for(int (I)=(A);(I)<(B);++(I)) #define ALL(C) (C).begin(),(C).end() inline void solve() { int N,K; string S; int t; int I[10001]; cin>>N>>K>>S; stack<int> T; FOR(i,0,N) { if(S[i]=='(') { T.push(i); } else { t = T.top(); T.pop(); I[t] = i; I[i] = t; } } cout<<(I[K-1]+1)<<endl; } int main(int argc,char**argv) { BEGIN solve(); END }