結果
問題 | No.2178 Payable Magic Items |
ユーザー | Carpenters-Cat |
提出日時 | 2023-01-07 05:29:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,309 bytes |
コンパイル時間 | 1,957 ms |
コンパイル使用メモリ | 202,988 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 13:50:57 |
合計ジャッジ時間 | 12,447 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
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 | -- | - |
ソースコード
#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; } array<int, 8> A[200020]; for (int i = 0; i < N; i ++) { int id = 0; for (int& a : A[i]) { a = 0; } for (int j = 0; j < K; j ++) { id *= 5; char a; cin >> a; a -= '0'; id += a; A[i][j] = a; } num[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[ID(a)] > 1); } cout << ans << endl; }