結果
問題 | No.592 括弧の対応 (2) |
ユーザー | kotatsugame |
提出日時 | 2017-11-13 02:10:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 295 bytes |
コンパイル時間 | 923 ms |
コンパイル使用メモリ | 72,712 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-24 23:25:30 |
合計ジャッジ時間 | 2,150 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 7 | main() | ^~~~
ソースコード
#include<iostream> #include<stack> using namespace std; string s; int c[1<<18]; stack<int>P; main() { cin>>s; for(int i=0;i<s.size();i++) { if(s[i]=='(') { P.push(i); } else { int a=P.top();P.pop(); c[a]=i+1,c[i]=a+1; } } for(int i=0;i<s.size();i++)cout<<c[i]<<endl; }