結果

問題 No.2178 Payable Magic Items
ユーザー mine691mine691
提出日時 2022-09-27 02:27:08
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,285 bytes
コンパイル時間 4,029 ms
コンパイル使用メモリ 257,532 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-08 13:17:39
合計ジャッジ時間 9,549 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 *= 4, ret += s[i] - 'A';
	return ret;
}

int dfs(string &s, unordered_map<string, int> &dp, unordered_map<string, int> &mp, unordered_map<string, int> &used)
{
	if (dp.find(s) != dp.end())
	{
		int ret = (used[s] ? 0 : dp[s] + mp[s]);
		used[s] = 1;
		return ret;
	}

	int ret = 0;

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

	return dp[s] = ret;
}

int main()
{
	int N, K;
	cin >> N >> K;
	vector<string> s(N);
	unordered_map<string, int> mp, used, dp;
	std::random_device seed_gen;
	std::mt19937 engine(seed_gen());
	std::shuffle(s.begin(), s.end(), engine);
	for (int i = 0; i < N; i++)
	{
		cin >> s[i];
		mp[s[i]]++;
	}

	int ans = 0;

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

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