結果
問題 | No.22 括弧の対応 |
ユーザー | satanic |
提出日時 | 2016-04-09 10:42:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 745 bytes |
コンパイル時間 | 487 ms |
コンパイル使用メモリ | 58,868 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 07:11:24 |
合計ジャッジ時間 | 1,473 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:24:5: warning: ‘check’ may be used uninitialized in this function [-Wmaybe-uninitialized] 24 | if(check=='('){ | ^~
ソースコード
#include <iostream> #include <vector> int main(){ std::ios::sync_with_stdio(false); std::cin.tie(0); char check; int N, K, ans; std::cin >> N >> K; std::vector<int> bracket(N+1, 0); for(int i=0; i<N; ++i){ char input; std::cin >> input; if(i==K-1) check=input; switch(input){ case '(': ++bracket[i]; break; case ')': --bracket[i+1]; break; } } for(int i=1; i<N+1; ++i){ bracket[i] += bracket[i-1]; } if(check=='('){ ans=K+1; while(bracket[K-1]!=bracket[ans-1]) ++ans; }else{ ans=K-1; while(bracket[K-1]!=bracket[ans-1]) --ans; } std::cout << ans << "\n"; return 0; }