結果
問題 | No.1188 レベルX門松列 |
ユーザー | umezo |
提出日時 | 2020-08-22 15:06:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 993 bytes |
コンパイル時間 | 2,128 ms |
コンパイル使用メモリ | 203,620 KB |
実行使用メモリ | 5,336 KB |
最終ジャッジ日時 | 2024-10-15 09:23:17 |
合計ジャッジ時間 | 3,439 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 17 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
ソースコード
#define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; int main() { ll n; cin>>n; vector<ll> A(n); rep(i,n) cin>>A[i]; if(n==1 || n==2){ cout<<0<<endl; return 0; } vector<ll> B; int x=0,cnt=0; if(A[0]<A[1]){ x=1; cnt=1; } else if(A[0]>A[1]){ x=-1; cnt=1; } for(int i=2;i<=n;i++){ if(x==1 && A[i-1]<A[i]) cnt++; else if((x==1 || x==-1) && A[i-1]==A[i]){ B.push_back(cnt); x=0; cnt=0; } else if(x==-1 && A[i-1]>A[i]) cnt++; else if(A[i-1]<A[i]){ B.push_back(cnt); cnt=1; x=1; } else if(A[i-1]>A[i]){ B.push_back(cnt); cnt=1; x=-1; } } B.push_back(cnt); int ma=0; int k=B.size(); if(k<2) cout<<0<<endl; else{ for(int i=0;i<k-1;i++){ int t=min(B[i],B[i+1]); ma=max(ma,t); } cout<<ma<<endl; } return 0; }