結果

問題 No.2178 Payable Magic Items
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-01-07 05:35:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,255 bytes
コンパイル時間 2,583 ms
コンパイル使用メモリ 203,828 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-08 13:49:03
合計ジャッジ時間 13,035 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int ID(int a = 0, int b = 0, int c = 0, int d = 0, int e = 0, int f = 0, int g = 0, int h = 0) {
    return (a + 5 * (b + 5 * (c + 5 * (d + 5 * (e + 5 * (f + 5 * (g + 5 * h)))))));
}
int ID(array<int, 8> arr) {
    return ID(arr[0], arr[1], arr[2], arr[3], arr[4], arr[5], arr[6], arr[7]);
}
int sss = 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5;
pair<int, bool> nxx(int id, int a) {
    int x = 1;
    for (int i = 0; i < a; i ++) {
        x *= 5;
    }
    id += x;
    return make_pair(id, id < (sss));
}
int main () {
    int N, K;
    cin >> N >> K;
    int num[sss];
    for (int& a : num) {
        a = 0;
    }
    int A[200020];
    for (int i = 0; i < N; i ++) {
        int id = 0;
        A[i] = 0;
        string s;
        int bb = 1;
        cin >> s;
        for (auto a : s) {
            a -= '0';
            id += a * bb;
            bb *= 5;
        }
        num[id] ++;
        A[i] = id;
    }
    for (int p = 0; p > 8; p ++) {
        for (int i = 0; i < sss; i ++) {
            auto [nx, ok] = nxx(i, p);
            if (ok) {
                num[nx] += num[i];
            }
        }
    }
    int ans = 0;
    for (auto& a : A) {
        ans += (num[a] > 1);
    }
    cout << ans << endl;
}
0