結果
問題 | No.2178 Payable Magic Items |
ユーザー | tnakao0123 |
提出日時 | 2023-01-09 22:41:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 171 ms / 4,000 ms |
コード長 | 1,359 bytes |
コンパイル時間 | 772 ms |
コンパイル使用メモリ | 64,616 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-05-10 03:24:26 |
合計ジャッジ時間 | 3,344 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,808 KB |
testcase_01 | AC | 4 ms
7,808 KB |
testcase_02 | AC | 5 ms
7,808 KB |
testcase_03 | AC | 39 ms
8,320 KB |
testcase_04 | AC | 5 ms
7,808 KB |
testcase_05 | AC | 5 ms
7,680 KB |
testcase_06 | AC | 7 ms
8,064 KB |
testcase_07 | AC | 5 ms
7,936 KB |
testcase_08 | AC | 7 ms
7,936 KB |
testcase_09 | AC | 6 ms
7,808 KB |
testcase_10 | AC | 5 ms
7,808 KB |
testcase_11 | AC | 138 ms
17,536 KB |
testcase_12 | AC | 162 ms
17,792 KB |
testcase_13 | AC | 156 ms
17,792 KB |
testcase_14 | AC | 157 ms
17,792 KB |
testcase_15 | AC | 171 ms
17,664 KB |
testcase_16 | AC | 156 ms
17,664 KB |
testcase_17 | AC | 74 ms
11,264 KB |
testcase_18 | AC | 5 ms
7,808 KB |
testcase_19 | AC | 30 ms
10,240 KB |
testcase_20 | AC | 4 ms
7,808 KB |
testcase_21 | AC | 5 ms
7,808 KB |
testcase_22 | AC | 6 ms
7,808 KB |
testcase_23 | AC | 5 ms
7,808 KB |
testcase_24 | AC | 116 ms
14,720 KB |
testcase_25 | AC | 53 ms
9,472 KB |
testcase_26 | AC | 40 ms
11,008 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 2178.cc: No.2178 Payable Magic Items - yukicoder */ #include<cstdio> #include<vector> #include<queue> #include<algorithm> using namespace std; /* constant */ const int MAX_N = 200000; const int MAX_K = 8; const int MAX_M = 390625; // = 5^8 /* typedef */ typedef vector<int> vi; typedef queue<int> qi; /* global variables */ char s[MAX_K + 4]; vi vs[MAX_N]; bool used[MAX_M]; /* subroutines */ int v2id(vi &v) { int id = 0; for (int i = 0, e = 1; i < v.size(); i++, e *= 5) id += v[i] * e; return id; } void id2v(int id, int k, vi &v) { v.resize(k); for (int i = 0; i < k; i++, id /= 5) v[i] = id % 5; } /* main */ int main() { int n, k; scanf("%d%d", &n, &k); for (int i = 0; i < n; i++) { scanf("%s", s); vs[i].resize(k); for (int j = 0; j < k; j++) vs[i][j] = s[j] - '0'; } sort(vs, vs + n); int cnt = 0; for (int i = n - 1; i >= 0; i--) { int st = v2id(vs[i]); if (used[st]) cnt++; else { used[st] = true; qi q; q.push(st); while (! q.empty()) { int u = q.front(); q.pop(); vi uv; id2v(u, k, uv); for (int j = 0; j < k; j++) if (uv[j] > 0) { uv[j]--; int v = v2id(uv); if (! used[v]) { used[v] = true; q.push(v); } uv[j]++; } } } } printf("%d\n", cnt); return 0; }