結果

問題 No.921 ずんだアロー
ユーザー ZacCrYmxf888I5qZacCrYmxf888I5q
提出日時 2019-11-19 00:31:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 704 bytes
コンパイル時間 1,675 ms
コンパイル使用メモリ 168,376 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-14 06:18:40
合計ジャッジ時間 3,863 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 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,940 KB
testcase_10 AC 29 ms
6,944 KB
testcase_11 AC 30 ms
6,944 KB
testcase_12 AC 8 ms
6,944 KB
testcase_13 AC 22 ms
6,944 KB
testcase_14 AC 25 ms
6,948 KB
testcase_15 AC 16 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 26 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 32 ms
6,944 KB
testcase_24 AC 32 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=1;i<=n;i++)

int main(){
    int n,sum=0;
    cin >> n;
    vector<tuple<int,int>> moti(n+2);
    rep(i,n){
        cin >> get<0>(moti.at(i));
        get<1>(moti.at(i)) = 1;
    }
    get<1>(moti.at(0))=get<1>(moti.at(n+1))=1;
    for(int i=1;i<=n-1;i++){
        if(get<0>(moti.at(i))==get<0>(moti.at(i+1)))
            get<1>(moti.at(i))=get<1>(moti.at(i+1))=0;
    }
    for(int i=0;i<=n-1;i++){
        if(get<1>(moti.at(i))*get<1>(moti.at(i+1))*get<1>(moti.at(i+2)))
            get<1>(moti.at(i+1)) = 0;
    }
    for(int i=1;i<=n;i++){
        sum += get<1>(moti.at(i));
    }
    cout << n-sum << endl;
    return 0;
    
}
0