結果
問題 | No.457 (^^*) |
ユーザー | ciel |
提出日時 | 2016-12-08 22:03:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 858 bytes |
コンパイル時間 | 694 ms |
コンパイル使用メモリ | 74,824 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 09:45:33 |
合計ジャッジ時間 | 1,465 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 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 | 3 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; int solve(const string &s){ int len=s.size(); vector<int>al; vector<int>ar; vector<int>ah(len); vector<int>ast; for(int i=0;i<len;i++){ if(s[i]=='('){ al.push_back(i); }else if(s[i]==')'){ ar.push_back(i); }else if(s[i]=='^'){ ah[i]++; }else if(s[i]=='*'){ ast.push_back(i); } } for(int i=1;i<len;i++)ah[i]+=ah[i-1]; int ret=0; for(auto &l:al){ int hidx=lower_bound(ah.begin(),ah.end(),ah[l]+2)-ah.begin(); auto st=lower_bound(ast.begin(),ast.end(),hidx); if(st!=ast.end())ret+=ar.end()-lower_bound(ar.begin(),ar.end(),*st); } return ret; } int main(){ string s; getline(cin,s); cout<<solve(s)<<' '; reverse(s.begin(),s.end()); for(auto &e:s){ if(e=='(')e=')'; else if(e==')')e='('; } cout<<solve(s)<<endl; }