Submission #1102470

#TimeUsernameProblemLanguageResultExecution timeMemory
1102470ThanhsWeird Numeral System (CCO21_day1problem2)C++17
0 / 25
928 ms1048576 KiB
#include <bits/stdc++.h> using namespace std; #define fi first #define se second #define int long long #define endl '\n' #define setmin(x, y) x = min((x), (y)) #define setmax(x, y) x = max((x), (y)) #define sqr(x) ((x) * (x)) mt19937 hdp(chrono::high_resolution_clock::now().time_since_epoch().count()); int rand(int l, int r){return l + ((hdp() % (r - l + 1)) + r - l + 1) % (r - l + 1);} const int NM = 5e3 + 5; vector<int> v; int k, q, d, m, a[NM]; bool ok; int F(int x) { return ((x % k) + k) % k; } void dfs(int x) { if (v.size() && !x) { ok = 1; for (int i = v.size() - 1; i >= 0; i--) cout << v[i] << ' '; cout << endl; return; } for (int i = 1; i <= d; i++) if (F(x) == F(a[i])) { v.push_back(a[i]); dfs((x - a[i]) / k); v.pop_back(); } } void solve() { cin >> k >> q >> d >> m; for (int i = 1; i <= d; i++) cin >> a[i]; while (q--) { int x; cin >> x; dfs(x); if (!ok) cout << "IMPOSSIBLE\n"; } } signed main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); if (fopen("in.txt", "r")) { freopen("in.txt", "r", stdin); freopen("out.txt", "w", stdout); } int tc = 1; // cin >> tc; while (tc--) solve(); }

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:65:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   65 |         freopen("in.txt", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
Main.cpp:66:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   66 |         freopen("out.txt", "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...