結果

問題 No.1219 Mancala Combo
ユーザー 👑 rin204rin204
提出日時 2022-07-04 15:31:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,114 bytes
コンパイル時間 3,290 ms
コンパイル使用メモリ 210,536 KB
実行使用メモリ 16,644 KB
最終ジャッジ日時 2024-12-14 06:04:30
合計ジャッジ時間 40,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
16,152 KB
testcase_02 AC 2 ms
13,632 KB
testcase_03 AC 2 ms
16,076 KB
testcase_04 AC 7 ms
13,636 KB
testcase_05 AC 4 ms
13,352 KB
testcase_06 AC 3 ms
13,636 KB
testcase_07 AC 4 ms
16,244 KB
testcase_08 AC 4 ms
13,632 KB
testcase_09 AC 1 ms
13,216 KB
testcase_10 AC 2 ms
13,604 KB
testcase_11 AC 3 ms
13,476 KB
testcase_12 AC 2 ms
13,636 KB
testcase_13 AC 3 ms
16,392 KB
testcase_14 AC 2 ms
13,640 KB
testcase_15 AC 2 ms
13,352 KB
testcase_16 AC 2 ms
13,640 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/lazysegtree>
using namespace std;
using namespace atcoder;
const int inf = 1 << 30;

struct S{
    int ind;
    int min_;
};
using F = int;

S e(){
    return S{-1, inf};
}

S op(S l, S r){
    if(l.min_ <= r.min_) return l;
    else return r;
}

S mapping(F l, S r){
    return S({r.ind, r.min_ + l});
}

F composition(F l, F r){
    return l + r;
}

F id(){
    return 0;
}

void solve(){
    int n, a;
    cin >> n;
    vector<S> A(n);
    for(int i = 0; i < n; i++){
        cin >> a;
        A[i].ind = i;
        A[i].min_ = i + 1 - a;
    }
    lazy_segtree<S, op, e, F, mapping, composition, id> seg(A);
    while(1){
        S tmp = seg.prod(0, n);
        if(tmp.min_ != 0) break;
        seg.apply(0, tmp.ind, -1);
        seg.apply(tmp.ind, tmp.ind + 1, tmp.ind + 1);
    }
    for(int i = 0; i < n; i++){
        if(seg.get(i).min_ != i + 1){
            cout << "No\n";
            return;
        }
    }
    cout << "Yes\n";
    
}

int main(){
    cin.tie(0)->sync_with_stdio(0);
    int t;
    t = 1;
    //cin >> t;
    while(t--) solve();
}
    
    


0