結果

問題 No.2539 スライムゲーム
ユーザー momoyuumomoyuu
提出日時 2023-11-10 23:12:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,410 bytes
コンパイル時間 3,704 ms
コンパイル使用メモリ 258,056 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2023-11-10 23:13:08
合計ジャッジ時間 4,806 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main(){
    vector<ll> ndp(1<<17,0);
    ndp[0] = 1;
    ndp[1] = 2;
    int no = -1;
    for(int i = 2;i<1<<17;i++){
        ndp[i] = 2 * ndp[i-1] + 1;
        if(ndp[i]>1e18){
            no = i;
            break;
        }
    }
    string s;
    cin>>s;
    ll ans = 0;
    int n = s.size();
    vector<ll> need(n+1,0);
    stack<int> st;
    set<int> ss;
    bool ok = false;
    vector<ll> dp(n+1,0);
    for(int i = n-1;i>=0;i--){
        if(s[i]==')'){
            st.push(i);
            continue;
        }
        if(st.empty()){
            ans += 1;
            break;
        }
        int ni = st.top();
        st.pop();
        if(ni==i+1){
            dp[i] = 1;
            ss.insert(i);
            if(st.empty()) ans += dp[i];
            ans = min(ans,(ll)2e18);
            continue;
        }
        ll sum = 0;
        while(ss.size()){
            auto itr = ss.begin();
            int nk = *itr;
            if(nk>ni) break;
            sum += dp[nk];
            sum = min(sum,(ll)2e18);
            ss.erase(nk);
        }
        if(sum>=no){
            dp[i] = 2e18;
        }
        if(sum<no) dp[i] = ndp[sum];
        ss.insert(i);
        if(st.empty()) ans += dp[i];
        ans = min(ans,(ll)2e18);
    }
    if(!st.empty()) ans++;
    if(ans<=1e18) cout<<ans<<endl;
    else cout<<"INFTY\n";
}

0