結果

問題 No.2178 Payable Magic Items
ユーザー mine691mine691
提出日時 2022-09-30 18:18:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 183 ms / 4,000 ms
コード長 1,423 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 205,632 KB
実行使用メモリ 206,336 KB
最終ジャッジ日時 2024-05-08 13:26:17
合計ジャッジ時間 5,654 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 126 ms
200,064 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 56 ms
200,064 KB
testcase_06 AC 58 ms
200,064 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 58 ms
200,060 KB
testcase_09 AC 13 ms
28,032 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 140 ms
206,336 KB
testcase_12 AC 173 ms
206,208 KB
testcase_13 AC 183 ms
206,200 KB
testcase_14 AC 179 ms
206,208 KB
testcase_15 AC 172 ms
206,296 KB
testcase_16 AC 183 ms
206,208 KB
testcase_17 AC 157 ms
202,016 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 29 ms
29,440 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 168 ms
204,412 KB
testcase_25 AC 154 ms
200,832 KB
testcase_26 AC 31 ms
30,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 想定解(エンコード、vector<int> で全てを管理)
#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);

int enc(string &s)
{
	int ret = 0;
	for (int i = 0; i < s.size(); i++)
		ret *= 8, ret += s[i] - '0';
	return ret;
}

int dfs(string &s, vector<int> &dp, vector<int> &mp, vector<int> &used)
{
	int e = enc(s), ret = 0;
	if (dp[e] != -1)
	{
		ret = (used[e] ? 0 : dp[e] + mp[e]), used[e] = 1;
		return ret;
	}

	for (int i = 0; i < s.size(); i++)
	{
		if (s[i] == '0')
			continue;
		s[i]--, ret += dfs(s, dp, mp, used);
		ret += (used[enc(s)] == 0 and mp[enc(s)] == 1);
		used[enc(s)] = 1, s[i]++;
	}

	return dp[e] = ret;
}

int main()
{
	int N, K;
	cin >> N >> K;
	vector<string> s(N);
	vector<int> mp(1 << (3 * K));
	vector<int> used(1 << (3 * K)), dp(1 << (3 * K), -1);
	int ans = 0;
	assert(1 <= K and K <= 8);
    assert(1 <= N and N <= min(2e5, pow(5, K)));
	for (int i = 0; i < N; i++)
	{
		cin >> s[i];
		mp[enc(s[i])]++;
		assert(s[i].size() == K);
		for(int j = 0; j < K; j++) assert('0' <= s[i][j] and s[i][j] <= '4');
	}

	for (int i = 0; i < N; i++)
		ans += dfs(s[i], dp, mp, used), dp[enc(s[i])] = 0;

	cout << ans << '\n';
}
0