Submission #1102480

#TimeUsernameProblemLanguageResultExecution timeMemory
1102480ThanhsWeird Numeral System (CCO21_day1problem2)C++17
25 / 25
1599 ms1872 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; map<int, bool> mp; int F(int x) { return ((x % k) + k) % k; } void dfs(int x) { if (mp[x]) return; if (v.size()) mp[x] = 1; if (v.size() && !x) { ok = 1; for (int i = v.size() - 1; i >= 0; i--) cout << v[i] << " \n"[i == 0]; return; } for (int i = 1; i <= d; i++) if (F(x) == F(a[i])) { v.push_back(a[i]); dfs((x - a[i]) / k); if (ok) return; 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; v.clear(); mp.clear(); ok = 0; 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:74:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   74 |         freopen("in.txt", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
Main.cpp:75:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   75 |         freopen("out.txt", "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...