結果

問題 No.1694 ZerOne
ユーザー ぷらぷら
提出日時 2021-10-01 21:48:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 1,949 ms
コンパイル使用メモリ 202,376 KB
実行使用メモリ 106,496 KB
最終ジャッジ日時 2024-07-19 11:00:34
合計ジャッジ時間 3,545 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 28 ms
68,608 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 9 ms
13,824 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 6 ms
9,344 KB
testcase_08 AC 11 ms
17,536 KB
testcase_09 AC 27 ms
63,872 KB
testcase_10 AC 6 ms
10,112 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 15 ms
22,656 KB
testcase_14 AC 27 ms
64,000 KB
testcase_15 AC 9 ms
14,976 KB
testcase_16 AC 7 ms
11,648 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 41 ms
106,496 KB
testcase_21 AC 40 ms
106,440 KB
testcase_22 AC 37 ms
103,296 KB
testcase_23 AC 38 ms
106,496 KB
testcase_24 AC 38 ms
106,496 KB
testcase_25 AC 38 ms
106,368 KB
testcase_26 AC 36 ms
99,712 KB
testcase_27 AC 34 ms
96,512 KB
testcase_28 AC 24 ms
51,840 KB
testcase_29 AC 27 ms
59,776 KB
testcase_30 AC 28 ms
73,344 KB
testcase_31 AC 34 ms
96,512 KB
testcase_32 AC 32 ms
89,216 KB
testcase_33 AC 35 ms
96,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

long long dp[61][61][3601];

int main() {
    string S;
    cin >> S;
    int sum1 = 0,sum2 = 0;
    for(int i = 0; i < S.size(); i++) {
        sum1 += S[i]-'0';
    }
    for(int i = 0; i < S.size(); i++) {
        for(int j = i; j < S.size(); j++) {
            if(S[i] > S[j]) {
                sum2++;
            }
        }
    }
    dp[0][0][0] = 1;
    for(int i = 0; i < S.size(); i++) {
        for(int j = 0; j < S.size(); j++) {
            for(int k = 0; k < S.size()*S.size(); k++) {
                dp[i+1][j+1][k] += dp[i][j][k];
                dp[i+1][j][k+j] += dp[i][j][k];
            }
        }
    }
    cout << dp[S.size()][sum1][sum2] << endl;
}
0