結果

問題 No.1825 Except One
ユーザー kozykozy
提出日時 2022-01-28 22:24:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,020 ms / 3,000 ms
コード長 921 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 211,384 KB
実行使用メモリ 208,640 KB
最終ジャッジ日時 2024-06-10 11:20:01
合計ジャッジ時間 11,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 993 ms
104,320 KB
testcase_04 AC 260 ms
45,056 KB
testcase_05 AC 56 ms
20,736 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 1,135 ms
99,840 KB
testcase_08 AC 829 ms
102,912 KB
testcase_09 AC 6 ms
6,944 KB
testcase_10 AC 593 ms
76,928 KB
testcase_11 AC 94 ms
24,320 KB
testcase_12 AC 316 ms
53,120 KB
testcase_13 AC 117 ms
33,536 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 5 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 46 ms
20,736 KB
testcase_25 AC 10 ms
7,296 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 167 ms
34,560 KB
testcase_28 AC 1,187 ms
151,936 KB
testcase_29 AC 12 ms
8,960 KB
testcase_30 AC 6 ms
6,944 KB
testcase_31 AC 45 ms
19,328 KB
testcase_32 AC 1,020 ms
115,712 KB
testcase_33 AC 9 ms
8,704 KB
testcase_34 AC 2,020 ms
208,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin>>N;
  vector<int> A;
  int mm=0;
  int ss=0;
  for (int i=0; i<N; i++){
    int a;
    cin>>a;
    mm=max(mm,a);
    ss+=a;
    A.push_back(a);
  }
  vector<vector<vector<long long>>> dp(N+1,vector<vector<long long>>(mm+1,vector<long long>(ss+1,0)));
  dp[1][A[0]][A[0]]=1;
  dp[0][0][0]=1;
  long long ans=0;
  int thi=A[0];
  for (int i=1; i<N; i++){
    thi+=A[i];
    for (int j=N; j>=1;j--){
      for (int s=thi; s>=A[i]; s--){
        for (int d=0; d<=A[i]; d++){
          dp[j][A[i]][s]+=dp[j-1][d][s-A[i]];
        }
        for (int d=A[i]+1; d<=mm; d++){
          dp[j][d][s]+=dp[j-1][d][s-A[i]];
        }
      }
    }
  }
  for (int j=2; j<=N; j++){
    for (int k=0; k<=mm; k++){
      for (int s=0; s<=ss; s++){
        if ((s%(j-1)==0) && (k<=s/(j-1))){
          ans+=dp[j][k][s];
        }
      }
    }
  }
  cout<<ans<<endl;
}
0