結果
問題 | No.2178 Payable Magic Items |
ユーザー | Carpenters-Cat |
提出日時 | 2023-01-07 05:37:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,237 bytes |
コンパイル時間 | 3,813 ms |
コンパイル使用メモリ | 201,840 KB |
実行使用メモリ | 5,888 KB |
最終ジャッジ日時 | 2024-05-08 13:50:03 |
合計ジャッジ時間 | 4,583 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 13 ms
5,376 KB |
testcase_04 | AC | 12 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
#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]); } const int sss = 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5; inline int nxx(int id, int a) { int x = 1; for (int i = 0; i < a; i ++) { x *= 5; } id += x; return id; } 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 = sss - 1; i >= 0; i --) { int nx = nxx(i, p); if (nx < sss) { num[i] += num[nx]; } } } int ans = 0; for (auto& a : A) { ans += (num[a] > 1); } cout << ans << endl; }