Submission #1125087

#TimeUsernameProblemLanguageResultExecution timeMemory
1125087PanndaWeird Numeral System (CCO21_day1problem2)C++20
8 / 25
2589 ms5536 KiB
#include <bits/stdc++.h>
using namespace std;
#define int long long

const long long inf = 2e18;

map<long long, long long> par;
int a[5008];

int d, K;
bool attempt(long long R) {
	if (par.count(R)) return (par[R] != inf);
	par[R] = inf;
	for (int i = 1; i <= d; ++i) if (abs(R - a[i]) % K == 0) {
		if (attempt((R - a[i]) / K)) {par[R] = a[i]; return 1;}
	}
	return 0;
}

signed main() {
	ios_base::sync_with_stdio(0);
	cin.tie(0); cout.tie(0);
	int q, m; cin >> K >> q >> d >> m;
	for (int i = 1; i <= d; ++i) cin >> a[i], par[a[i]] = a[i];
	long long N, CN;
	while (q--) {
		cin >> N; CN = N; 
		if (!attempt(N)) cout << "IMPOSSIBLE\n";
		else {
			vector<int> ans; long long x;
			while (1) {
				x = par[N]; ans.push_back(x);
				N = (N - x) / K;
				if (N == 0) break;
			}
			reverse(ans.begin(), ans.end());
			for (int i = 0; i + 1 < ans.size(); ++i) cout << ans[i] << ' ';
			cout << ans.back() << '\n';
		}
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...