結果
問題 | No.2145 Segment +- |
ユーザー | kotatsugame |
提出日時 | 2022-12-02 23:12:10 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 331 bytes |
コンパイル時間 | 1,019 ms |
コンパイル使用メモリ | 66,176 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-10 01:41:00 |
合計ジャッジ時間 | 1,942 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 6 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; int N; string S; int dp[60]; main() { cin>>N>>S; for(char c:S) { for(int i=0;i<60;i++)dp[i]+=c=='?'?1:c=='+'?i%2==0?1:-1:i%2==1?1:-1; for(int i=1;i<60;i++)dp[i]=max(dp[i],dp[i-1]); for(int i=0;i<60;i++)if(dp[i]<0)dp[i]=-1e9; } int k=0; while(dp[k]<0)k++; cout<<(k+1)/2<<endl; }