結果

問題 No.2178 Payable Magic Items
ユーザー mine691mine691
提出日時 2022-09-28 04:15:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,851 ms / 4,000 ms
コード長 1,066 bytes
コンパイル時間 2,323 ms
コンパイル使用メモリ 213,080 KB
実行使用メモリ 101,116 KB
最終ジャッジ日時 2024-05-08 13:31:36
合計ジャッジ時間 39,260 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,376 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3,191 ms
95,104 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 70 ms
7,040 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 65 ms
6,912 KB
testcase_09 AC 39 ms
5,888 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2,345 ms
54,484 KB
testcase_12 AC 3,692 ms
101,060 KB
testcase_13 AC 3,738 ms
101,116 KB
testcase_14 AC 3,829 ms
101,056 KB
testcase_15 AC 3,851 ms
100,976 KB
testcase_16 AC 3,733 ms
101,016 KB
testcase_17 AC 3,211 ms
96,768 KB
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 585 ms
23,040 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 15 ms
5,376 KB
testcase_22 AC 15 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 3,431 ms
99,160 KB
testcase_25 AC 3,229 ms
95,616 KB
testcase_26 AC 614 ms
23,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 想定解(エンコードなし、map<string, 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 dfs(string &s, map<string, int> &dp, map<string, int> &mp, map<string, int> &used)
{
	int ret = 0;
	if (dp.find(s) != dp.end())
	{
		ret = (used[s] ? 0 : dp[s] + mp[s]), used[s] = 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[s] == 0 and mp[s] == 1);
		used[s] = 1, s[i]++;
	}

	return dp[s] = ret;
}

int main()
{
	int N, K;
	cin >> N >> K;
	vector<string> s(N);
	map<string, int> used, dp, mp;
	int ans = 0;

	for (int i = 0; i < N; i++)
	{
		cin >> s[i];
		mp[s[i]]++;
	}

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

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