結果

問題 No.2178 Payable Magic Items
ユーザー mine691mine691
提出日時 2022-09-28 04:12:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,063 bytes
コンパイル時間 2,405 ms
コンパイル使用メモリ 213,692 KB
実行使用メモリ 65,340 KB
最終ジャッジ日時 2024-05-08 13:25:30
合計ジャッジ時間 24,301 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

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

	return dp[t] = ret;
}

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

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

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

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