結果

問題 No.2784 繰り上がりなし十進和
ユーザー ゼットゼット
提出日時 2024-06-14 22:12:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,442 ms / 2,000 ms
コード長 1,523 bytes
コンパイル時間 1,197 ms
コンパイル使用メモリ 104,764 KB
実行使用メモリ 26,604 KB
最終ジャッジ日時 2024-06-14 22:13:13
合計ジャッジ時間 19,652 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,440 KB
testcase_01 AC 3 ms
7,384 KB
testcase_02 AC 1,343 ms
26,476 KB
testcase_03 AC 4 ms
7,324 KB
testcase_04 AC 4 ms
7,424 KB
testcase_05 AC 3 ms
7,456 KB
testcase_06 AC 4 ms
7,424 KB
testcase_07 AC 3 ms
7,440 KB
testcase_08 AC 4 ms
7,424 KB
testcase_09 AC 5 ms
7,372 KB
testcase_10 AC 5 ms
7,348 KB
testcase_11 AC 5 ms
7,520 KB
testcase_12 AC 1,327 ms
26,476 KB
testcase_13 AC 1,337 ms
26,604 KB
testcase_14 AC 329 ms
12,140 KB
testcase_15 AC 66 ms
8,300 KB
testcase_16 AC 137 ms
9,356 KB
testcase_17 AC 735 ms
16,844 KB
testcase_18 AC 679 ms
17,152 KB
testcase_19 AC 200 ms
9,740 KB
testcase_20 AC 1,397 ms
26,472 KB
testcase_21 AC 140 ms
9,440 KB
testcase_22 AC 1,385 ms
26,480 KB
testcase_23 AC 58 ms
8,188 KB
testcase_24 AC 279 ms
11,220 KB
testcase_25 AC 711 ms
17,152 KB
testcase_26 AC 1,382 ms
26,604 KB
testcase_27 AC 1,393 ms
26,492 KB
testcase_28 AC 341 ms
12,204 KB
testcase_29 AC 1,442 ms
26,476 KB
testcase_30 AC 362 ms
12,292 KB
testcase_31 AC 138 ms
9,344 KB
testcase_32 AC 667 ms
16,872 KB
testcase_33 AC 695 ms
16,984 KB
testcase_34 AC 272 ms
11,216 KB
testcase_35 AC 74 ms
8,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#include <queue>
#include <string>
#include <cmath>

using namespace std;

// Function to add two strings representing numbers digit by digit and mod by 10
string f(const string& a, const string& b) {
    string c = "";
    for (int i = 0; i < 6; ++i) {
        int x = (a[i] - '0') + (b[i] - '0');
        x %= 10;
        c += to_string(x);
    }
    return c;
}

int main() {
    set<string> L;
    vector<string> K(6);
    
    // Read input strings
    for (int i = 0; i < 6; ++i) {
        cin >> K[i];
    }

    vector<int> dp(1000001, 0);
    deque<string> S;

    // Initialize the deque with unique strings
    for (const string& s : K) {
        int x = 0;
        for (int i = 0; i < 6; ++i) {
            x += (s[5 - i] - '0') * pow(10, i);
        }
        if (dp[x] == 0) {
            dp[x] = 1;
            S.push_back(s);
        }
    }

    // Process the deque
    while (!S.empty()) {
        string h = S.back();
        S.pop_back();
        for (int i = 0; i < 6; ++i) {
            string s = K[i];
            string b = f(h, s);
            int x = 0;
            for (int j = 0; j < 6; ++j) {
                x += (b[5 - j] - '0') * pow(10, j);
            }
            if (dp[x] == 0) {
                dp[x] = 1;
                S.push_back(b);
            }
        }
    }

    // Sum the dp array
    int result = 0;
    for (int i = 0; i < 1000000; ++i) {
        result += dp[i];
    }

    cout << result << endl;

    return 0;
}
0