結果

問題 No.3114 0→1
ユーザー Tatsu_mr
提出日時 2025-04-19 16:25:55
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,291 bytes
コンパイル時間 3,892 ms
コンパイル使用メモリ 279,412 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-04-19 16:26:00
合計ジャッジ時間 4,381 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define For(i, a, b) for(int i = (a); i < (b); i++)
#define rep(i, n) For(i, 0, n)
#define rFor(i, a, b) for(int i = (a); i >= (b); i--)
#define ALL(v) (v).begin(), (v).end()
#define rALL(v) (v).rbegin(), (v).rend()
#define SZ(v) ((int)(v).size())

using lint = long long;
using ld = long double;

int INF = 2000000000;
lint LINF = 1000000000000000000;

struct SetupIo {
    SetupIo() {
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
        cout << fixed << setprecision(15);
        cerr << fixed << setprecision(15);
    }
} setupio;

template <class T>
vector<pair<T, int>> RLE(const vector<T> &v) {
    vector<pair<T, int>> res;
    for (const auto x : v) {
        if (res.size() == 0 || res.back().first != x) {
            res.emplace_back(x, 1);
        } else {
            res.back().second++;
        }
    }
    return res;
}

vector<pair<char, int>> RLE(const string &s) {
    vector<char> v;
    for (const char &c : s) {
        v.emplace_back(c);
    }
    return RLE(v);
}

int main() {
    int n;
    string s;
    cin >> n >> s;
    auto rle = RLE(s);
    int ans = 0;
    for (auto [c, x] : rle) {
        if (c == '0' && x >= 2) {
            ans += (x + 1) / 2;
        }
    }
    cout << ans << "\n";
}
0