結果

問題 No.1765 While Shining
ユーザー se1ka2se1ka2
提出日時 2021-11-26 22:28:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 64,092 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-29 18:10:38
合計ジャッジ時間 1,819 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
using namespace std;
typedef long long ll;

int main()
{
    int n;
    cin >> n;
    int a[200005];
    for(int i = 0; i < n; i++) cin >> a[i];
    a[n] = 0;
    ll s[200005];
    s[n - 1] = 0;
    for(int i = n - 2; i >= 0; i--){
        if(a[i] == 0) s[i] = 0;
        if(a[i] == 1){
            if(i < n - 2 && a[i + 1] == 0){
                if(a[i + 2] == 1) s[i] = s[i + 2] + 2;
                else s[i] = 2;
            }
            else s[i] = 1;
        }
    }
    ll ans = 0;
    for(int i = 0; i < n; i++) ans += s[i];
    cout << ans << endl;
}
0