結果

問題 No.921 ずんだアロー
ユーザー iryukiiryuki
提出日時 2020-02-14 11:24:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 680 bytes
コンパイル時間 1,646 ms
コンパイル使用メモリ 164,548 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-16 00:12:49
合計ジャッジ時間 3,548 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 28 ms
6,940 KB
testcase_11 AC 30 ms
6,940 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 22 ms
6,940 KB
testcase_14 AC 25 ms
6,940 KB
testcase_15 AC 16 ms
6,944 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 26 ms
6,940 KB
testcase_18 AC 31 ms
6,944 KB
testcase_19 AC 31 ms
6,944 KB
testcase_20 AC 31 ms
6,944 KB
testcase_21 AC 31 ms
6,940 KB
testcase_22 AC 31 ms
6,940 KB
testcase_23 AC 31 ms
6,940 KB
testcase_24 AC 31 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    int n;cin>>n;
    int a,b;
    int flag;
    vector<int> dp(n+1);
    for(int i=1;i<n+1;i++){
        if(i==1){
            cin>>b;
            dp[i]=1;
            flag=-1;
        }
        else{
            cin>>a;
            if(b==a){
                dp[i]=dp[i-1]+1;
                flag=-1;
            }
            else{
                if(flag==1){
                    dp[i]=dp[i-1]+1;
                    flag=-1;
                }
                else{
                    dp[i]=dp[i-1];
                    flag=1;
                }
            }
            b=a;
        }
    }
    cout<<dp[n]<<endl;
}
0