結果
問題 | No.1694 ZerOne |
ユーザー | sten_san |
提出日時 | 2021-10-01 23:24:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 56 ms / 2,000 ms |
コード長 | 1,461 bytes |
コンパイル時間 | 2,329 ms |
コンパイル使用メモリ | 210,396 KB |
実行使用メモリ | 57,472 KB |
最終ジャッジ日時 | 2024-07-19 16:14:44 |
合計ジャッジ時間 | 4,021 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 29 ms
31,744 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 5 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 4 ms
6,944 KB |
testcase_08 | AC | 7 ms
8,448 KB |
testcase_09 | AC | 27 ms
29,824 KB |
testcase_10 | AC | 4 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 8 ms
10,496 KB |
testcase_14 | AC | 27 ms
29,696 KB |
testcase_15 | AC | 6 ms
7,296 KB |
testcase_16 | AC | 4 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 54 ms
57,472 KB |
testcase_21 | AC | 55 ms
57,472 KB |
testcase_22 | AC | 52 ms
54,016 KB |
testcase_23 | AC | 55 ms
57,344 KB |
testcase_24 | AC | 55 ms
57,344 KB |
testcase_25 | AC | 56 ms
57,472 KB |
testcase_26 | AC | 48 ms
50,688 KB |
testcase_27 | AC | 45 ms
47,616 KB |
testcase_28 | AC | 23 ms
24,064 KB |
testcase_29 | AC | 25 ms
27,776 KB |
testcase_30 | AC | 31 ms
34,176 KB |
testcase_31 | AC | 44 ms
47,616 KB |
testcase_32 | AC | 39 ms
41,728 KB |
testcase_33 | AC | 45 ms
47,488 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; struct iofast_t { iofast_t() { ios::sync_with_stdio(false); cin.tie(nullptr); } } iofast; struct uns_t {} uns; template <typename Element, typename Head, typename ...Args> auto vec(Element init, Head arg, Args ...args) { if constexpr (sizeof...(Args) == 0) return std::vector(arg, init); else return std::vector(arg, vec(init, args...)); } template <typename Element, typename Head, typename ...Args> auto vec(uns_t, Head arg, Args ...args) { return vec(Element(), arg, args...); } template <typename T, typename Compare = less<T>> T &chmin(T &l, T r, Compare &&f = less<T>()) { return l = min(l, r, f); } template <typename T, typename Compare = less<T>> T &chmax(T &l, T r, Compare &&f = less<T>()) { return l = max(l, r, f); } int main() { string s; cin >> s; int n = size(s); int m = n * (n + 1) / 2; int sum = 0; for (int i = 0; i < n; ++i) { sum += (s[i] - '0') * (i + 1); } auto dp = vec<int64_t>(0, n + 1, n + 1, m + 1); dp[0][0][0] = 1; for (int i = 1; i <= n; ++i) { for (int j = 0; j <= n; ++j) { for (int k = 0; k <= m; ++k) { dp[i][j][k] = dp[i - 1][j][k]; if (0 <= k - i && 0 <= j - 1) { dp[i][j][k] += dp[i - 1][j - 1][k - i]; } } } } cout << dp[n][count(begin(s), end(s), '1')][sum] << endl; }