結果

問題 No.2182 KODOKU Stone
ユーザー 👑 NachiaNachia
提出日時 2023-01-06 22:57:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 4,259 bytes
コンパイル時間 1,252 ms
コンパイル使用メモリ 94,860 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-05-07 22:40:43
合計ジャッジ時間 3,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 18 ms
6,944 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 75 ms
9,600 KB
testcase_17 AC 17 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 16 ms
6,944 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 14 ms
6,940 KB
testcase_26 AC 13 ms
6,944 KB
testcase_27 AC 13 ms
6,944 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 48 ms
6,944 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 1 "Main.cpp"
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <atcoder/modint>
#line 2 "nachia\\set\\word-size-tree.hpp"

#line 5 "nachia\\set\\word-size-tree.hpp"

namespace nachia{

struct WordsizeTree{
    using Word = unsigned long long;
    static constexpr int W = 64;
    int N;
    std::vector<std::vector<Word>> A;
    static int highBit(Word x){
        if(x == 0) return 0;
        return W-1 - __builtin_clzll(x);
    }
    static int lowBit(Word x){
        if(x == 0) return W;
        return __builtin_ctzll(x);
    }
    WordsizeTree(unsigned int length){
        N = length;
        int n = length;
        do {
            std::vector<Word> a(n/W+1,0);
            A.emplace_back(std::move(a));
            n /= W;
        } while(n);
    }
    WordsizeTree(const std::string& binStr = ""){
        N = binStr.size();
        int n = N;
        {
            std::vector<Word> a(n/W+1);
            for(int i=0; i<n; i++) if(binStr[i] == '1'){
                a[i/W] |= (Word)1 << (i%W);
            }
            A.emplace_back(std::move(a));
            n /= W;
        }
        while(n){
            std::vector<Word> a(n/W+1,0);
            for(int i=0; i<=n; i++){
                if(A.back()[i]) a[i/W] |= (Word)1 << (i%W);
            }
            A.emplace_back(std::move(a));
            n /= W;
        }
    }
    void insert(int x){
        for(auto& a : A){
            a[x/W] |= (Word)1 << (x % W);
            x /= W;
        }
    }
    void erase(int x){
        for(auto& a : A){
        a[x/W] &= ~((Word)1 << (x % W));
        if(a[x/W]) return;
        x /= W;
        }
    }
    int count(int x) const {
        return (int)((A[0][x/W] >> (x%W)) & 1);
    }
    int noLessThan(int x) const {
        int d = 0, i = x;
        while(true){
            if(d >= (int)A.size()) return -1;
            if(i/W >= (int)A[d].size()) return -1;
            Word m = A[d][i/W] & ((~(Word)0) << (i%W));
            if(!m){ d++; i /= W; i++; }
            else{
                int to = lowBit(m);
                i = i/W*W + to;
                if(d == 0) break;
                i *= W;
                d--;
            }
        }
        return i;
    }
    int noGreaterThan(int x) const {
        int d = 0, i = x;
        while(true){
            if(i < 0) return -1;
            if(d >= (int)A.size()) return -1;
            Word m = A[d][i/W] & ~((~(Word)1) << (i%W));
            if(!m){ d++; i /= W; i--; }
            else{
                int to = highBit(m);
                i = i/W*W + to;
                if(d == 0) break;
                i *= W;
                i += W-1;
                d--;
            }
        }
        return i;
    }
};

} // namespace nachia
#line 8 "Main.cpp"
using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(int)(n); i++)
const i64 INF = 1001001001001001001;

using Modint = atcoder::static_modint<998244353>;


int main(){
    int N; cin >> N;
    vector<int> K(N); rep(i,N) cin >> K[i];
    reverse(K.begin(), K.end());
    vector<vector<int>> A(N);
    rep(i,N){
        int t; cin >> t;
        A[i].resize(t);
        rep(j,t) cin >> A[i][j];
        sort(A[i].rbegin(), A[i].rend());
    }
    int L = 0, R = 1000000000;
    vector<int> H(N);
    while(L+1 < R){
        int x = (L+R)/2;
        rep(i,N) H[i] = min<int>(A[i].size(), upper_bound(A[i].begin(), A[i].end(), x, greater<int>()) - A[i].begin()) + 1;
        sort(H.begin(), H.end());
        nachia::WordsizeTree Hset(string(N, '1'));
        auto Take = [&](int h) -> bool {
            int hp = lower_bound(H.begin(), H.end(), h) - H.begin();
            int pos = Hset.noLessThan(hp);
            if(pos == -1) return false;
            Hset.erase(pos);
            return true;
        };
        bool ok = true;
        for(int k : K){
            if(Take(k+1)){ ok = true; break; }
            if(!Take(k)){ ok = false; break; }
        }
        (ok ? L : R) = x;
    }
    cout << L << endl;
    return 0;
}



struct ios_do_not_sync{
    ios_do_not_sync(){
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
    }
} ios_do_not_sync_instance;

0