結果

問題 No.636 硬貨の枚数2
ユーザー finefine
提出日時 2018-01-21 20:56:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,597 bytes
コンパイル時間 1,642 ms
コンパイル使用メモリ 167,076 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-07 15:37:36
合計ジャッジ時間 3,258 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,948 KB
testcase_16 WA -
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,948 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 2 ms
6,940 KB
testcase_45 AC 1 ms
6,940 KB
testcase_46 AC 2 ms
6,940 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 2 ms
6,944 KB
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 2 ms
6,940 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 2 ms
6,940 KB
testcase_55 AC 1 ms
6,940 KB
testcase_56 AC 2 ms
6,940 KB
testcase_57 AC 1 ms
6,940 KB
testcase_58 AC 2 ms
6,940 KB
testcase_59 AC 2 ms
6,944 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 1 ms
6,940 KB
testcase_63 AC 2 ms
6,944 KB
testcase_64 AC 2 ms
6,940 KB
testcase_65 AC 2 ms
6,944 KB
testcase_66 AC 2 ms
6,944 KB
testcase_67 AC 1 ms
6,940 KB
testcase_68 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

const int INF = 1000000000;

int dp[2][2];

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    string n;
    cin >> n;
    dp[0][0] = 0;
    dp[0][1] = INF;
    dp[1][0] = INF;
    dp[1][1] = INF;
    int m = n.length();
    for (int i = 0; i < m; i++) {
        int cur = n[i] - '0';
        switch (cur) {
            case 0:
            case 1:
            case 2:
                dp[(i + 1) % 2][0] = min(dp[i % 2][0], dp[i % 2][1] + 1) + cur;
                break;
            case 3:
                dp[(i + 1) % 2][0] = min(dp[i % 2][0], dp[i % 2][1] + 1) + cur;
                dp[(i + 1) % 2][1] = min(dp[i % 2][0], dp[i % 2][1]) + cur - 1;
                break;
            case 4:
                dp[(i + 1) % 2][1] = min(dp[i % 2][0], dp[i % 2][1]) + 1;
                break;
            case 5:
            case 6:
                dp[(i + 1) % 2][0] = min(dp[i % 2][0], dp[i % 2][1]) + cur - 4;
                break;
            case 7:
                dp[(i + 1) % 2][0] = min(dp[i % 2][0], dp[i % 2][1]) + 3;
                dp[(i + 1) % 2][1] = min(dp[i % 2][0] + 1, dp[i % 2][1]) + 2;
                break;
            case 8:
                dp[(i + 1) % 2][1] = min(dp[i % 2][0] + 1, dp[i % 2][1]) + 1;
                break;
            case 9:
                dp[(i + 1) % 2][1] = min(dp[i % 2][0] + 1, dp[i % 2][1]);
                break;
        }
        dp[i % 2][0] = INF;
        dp[i % 2][1] = INF;
    }
    cout << min(dp[m % 2][0], dp[m % 2][1] + 1) << endl;
    return 0;
}
0