結果
問題 | No.2178 Payable Magic Items |
ユーザー | mine691 |
提出日時 | 2022-09-27 01:56:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 3,361 bytes |
コンパイル時間 | 2,629 ms |
コンパイル使用メモリ | 208,268 KB |
実行使用メモリ | 9,856 KB |
最終ジャッジ日時 | 2024-05-08 13:17:29 |
合計ジャッジ時間 | 7,980 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using Int = long long; constexpr static int mod = 1e9 + 7; constexpr static int inf = (1 << 30) - 1; constexpr static Int infll = (1LL << 61) - 1; int Competitive_Programming = (ios_base::sync_with_stdio(false), cin.tie(nullptr), cout << fixed << setprecision(15), 0); #pragma region Debug Template template <typename A, typename B> string to_string(pair<A, B> p); template <typename A, typename B, typename C> string to_string(tuple<A, B, C> p); template <typename A, typename B, typename C, typename D> string to_string(tuple<A, B, C, D> p); string to_string(const string &s) { return '"' + s + '"'; } string to_string(const char *s) { return to_string((string)s); } string to_string(bool b) { return (b ? "true" : "false"); } string to_string(vector<bool> v) { bool first = true; string res = "{"; for (int i = 0; i < static_cast<int>(v.size()); i++) { if (!first) { res += ", "; } first = false; res += to_string(v[i]); } res += "}"; return res; } template <size_t N> string to_string(bitset<N> v) { string res = ""; for (size_t i = 0; i < N; i++) { res += static_cast<char>('0' + v[i]); } return res; } template <typename A> string to_string(A v) { bool first = true; string res = "{"; for (const auto &x : v) { if (!first) { res += ", "; } first = false; res += to_string(x); } res += "}"; return res; } template <typename A, typename B> string to_string(pair<A, B> p) { return "(" + to_string(p.first) + ", " + to_string(p.second) + ")"; } template <typename A, typename B, typename C> string to_string(tuple<A, B, C> p) { return "(" + to_string(get<0>(p)) + ", " + to_string(get<1>(p)) + ", " + to_string(get<2>(p)) + ")"; } template <typename A, typename B, typename C, typename D> string to_string(tuple<A, B, C, D> p) { return "(" + to_string(get<0>(p)) + ", " + to_string(get<1>(p)) + ", " + to_string(get<2>(p)) + ", " + to_string(get<3>(p)) + ")"; } void debug_out() { cerr << endl; } template <typename Head, typename... Tail> void debug_out(Head H, Tail... T) { cerr << " " << to_string(H); debug_out(T...); } #ifdef LOCAL #define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__) #else #define debug(...) 42 #endif #pragma endregion int enc(string s) { int ret = 0; for (int i = 0; i < s.size(); i++) { ret *= 4; ret += s[i] - 'A'; } return ret; } int dfs(string &s, vector<int> &dp, vector<int> &mp, vector<int> &used) { int e = enc(s); if (dp[e] != -1) { int ret = (used[e] ? 0 : dp[e] + mp[e]); // dp[e] = 0; used[e] = 1; return ret; } // used[e] = 1; int ret = 0, K = s.size(); for (int i = 0; i < K; i++) { if (s[i] == 'D') continue; s[i]++; ret += dfs(s, dp, mp, used); if(used[enc(s)] == 0 and mp[enc(s)] == 1) ret++; used[enc(s)] = 1; s[i]--; } dp[e] = ret; // debug_out(s, dp[e], e); return ret; } int main() { int N, K; cin >> N >> K; vector<string> s(N); vector<int> mp(1 << (2 * K)); for (int i = 0; i < N; i++) { cin >> s[i]; mp[enc(s[i])]++; // debug_out(s[i], enc(s[i])); } vector<int> used(1 << (2 * K)), dp(1 << (2 * K), -1); int ans = 0; for (int i = 0; i < N; i++) { int t = dfs(s[i], dp, mp, used); ans += t; // debug_out(s[i], t); dp[enc(s[i])] = 0; } cout << ans << endl; // debug_out(mp, dp); }