結果

問題 No.2178 Payable Magic Items
ユーザー mine691mine691
提出日時 2022-09-28 04:10:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,872 ms / 4,000 ms
コード長 1,064 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 210,412 KB
実行使用メモリ 64,384 KB
最終ジャッジ日時 2024-05-08 13:24:56
合計ジャッジ時間 28,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2,872 ms
58,368 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 46 ms
5,632 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 45 ms
5,376 KB
testcase_09 AC 26 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1,655 ms
36,352 KB
testcase_12 AC 2,529 ms
64,384 KB
testcase_13 AC 2,609 ms
64,360 KB
testcase_14 AC 2,637 ms
64,368 KB
testcase_15 AC 2,616 ms
64,256 KB
testcase_16 AC 2,560 ms
64,276 KB
testcase_17 AC 2,139 ms
60,032 KB
testcase_18 AC 10 ms
5,376 KB
testcase_19 AC 381 ms
15,744 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 10 ms
5,376 KB
testcase_22 AC 11 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 2,377 ms
62,592 KB
testcase_25 AC 2,192 ms
59,008 KB
testcase_26 AC 405 ms
16,256 KB
権限があれば一括ダウンロードができます

ソースコード

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 dfs(string &s, map<int, int> &dp, map<int, int> &mp, map<int, int> &used)
{
	int ret = 0;
	if (dp.find(stoi(s)) != dp.end())
	{
		ret = (used[stoi(s)] ? 0 : dp[stoi(s)] + mp[stoi(s)]), used[stoi(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[stoi(s)] == 0 and mp[stoi(s)] == 1);
		used[stoi(s)] = 1, s[i]++;
	}

	return dp[stoi(s)] = ret;
}

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

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

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

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