結果

問題 No.1825 Except One
ユーザー momoyuumomoyuu
提出日時 2023-10-26 13:22:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,641 ms / 3,000 ms
コード長 1,102 bytes
コンパイル時間 3,240 ms
コンパイル使用メモリ 253,992 KB
実行使用メモリ 417,536 KB
最終ジャッジ日時 2024-09-25 12:23:24
合計ジャッジ時間 16,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1,128 ms
205,568 KB
testcase_04 AC 279 ms
86,528 KB
testcase_05 AC 74 ms
38,016 KB
testcase_06 AC 9 ms
8,704 KB
testcase_07 AC 1,032 ms
197,888 KB
testcase_08 AC 1,090 ms
207,616 KB
testcase_09 AC 7 ms
8,192 KB
testcase_10 AC 729 ms
152,576 KB
testcase_11 AC 113 ms
45,824 KB
testcase_12 AC 395 ms
102,656 KB
testcase_13 AC 163 ms
62,336 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 6 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 4 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 152 ms
60,160 KB
testcase_25 AC 76 ms
33,792 KB
testcase_26 AC 8 ms
8,064 KB
testcase_27 AC 694 ms
147,840 KB
testcase_28 AC 2,222 ms
355,328 KB
testcase_29 AC 17 ms
13,696 KB
testcase_30 AC 16 ms
12,416 KB
testcase_31 AC 69 ms
34,432 KB
testcase_32 AC 1,325 ms
232,960 KB
testcase_33 AC 18 ms
14,848 KB
testcase_34 AC 2,641 ms
417,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    int n;
    cin>>n;
    int sum = 0;
    vector<vector<vector<ll>>> dp(1,vector<vector<ll>>(sum+1,vector<ll>(101,0)));
    dp[0][0][0] = 1;
    for(int i = 0;i<n;i++){
        int a;
        cin>>a;
        sum += a;
        vector<vector<vector<ll>>> ndp(i+2,vector<vector<ll>>(sum+1,vector<ll>(101,0)));

        for(int j = 0;j<=i;j++){
            for(int k = 0;k<=sum-a;k++){
                for(int l = 0;l<=100;l++){
                    int nl = max(l,a);
                    ndp[j][k][l] += dp[j][k][l];
                    ndp[j+1][k+a][nl] += dp[j][k][l];
                }
            }
        }
        swap(ndp,dp);
    }
    ll ans = 0;
    for(int i = 2;i<=n;i++){
        for(int j = 0;j<=sum;j++){
            for(int k = 0;k<=100;k++){
                if(j%(i-1)!=0) continue;
                int ni = j / (i-1);
                if(k-ni>0) continue;
                ans += dp[i][j][k];
            }
        }
    }

    cout<<ans<<endl;
}
0