結果

問題 No.1765 While Shining
ユーザー bonKotsubonKotsu
提出日時 2022-07-24 14:57:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,129 bytes
コンパイル時間 4,336 ms
コンパイル使用メモリ 261,808 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-06 09:25:18
合計ジャッジ時間 5,857 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 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,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,940 KB
testcase_09 AC 23 ms
6,940 KB
testcase_10 AC 33 ms
6,940 KB
testcase_11 AC 29 ms
6,940 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,948 KB
testcase_16 AC 35 ms
6,940 KB
testcase_17 AC 35 ms
6,944 KB
testcase_18 AC 36 ms
6,944 KB
testcase_19 AC 35 ms
6,944 KB
testcase_20 AC 35 ms
6,940 KB
testcase_21 AC 35 ms
6,940 KB
testcase_22 AC 36 ms
6,944 KB
testcase_23 AC 35 ms
6,944 KB
testcase_24 AC 34 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>
#define LP pair<ll, ll>
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define all(s) s.begin(), s.end()
#define rall(s) s.rbegin(), s.rend()
template<class T>
void chmax(T& a, T b) { a = max(a, b); };
template<class T>
void chmin(T& a, T b) { a = min(a, b); };

int main() {
  int n;
  cin >> n;
  vector<int> a(n);
  rep(i,n) cin >> a[i];
  vector<int> s(n);
  int l = 0, r = 0;
  while (l < n-1) {
    if (a[l] == 0) {
      l++;
      r++;
      continue;
    }
    int cnt = 0;
    // rをすすめる
    while (r < n) {
      cnt++;
      r++;
      if (r == n-1 || a[r-1]+a[r] != 1) break;
    }
    // l をすすめる
    bool flag = true;
    while (l < r) {
      if (flag) {
        s[l] = cnt;
        flag = false;
        cnt -= 2;
      } else {
        s[l] = 0;
        flag = true; 
      }
      l++;
    }
  }
  ll ans = 0;
  rep(i,n) ans += s[i];
  cout << ans << endl;
  return 0;
}
0