結果
問題 | No.1651 Removing Cards |
ユーザー | nawawan |
提出日時 | 2021-08-20 22:56:56 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 250 ms / 2,000 ms |
コード長 | 887 bytes |
コンパイル時間 | 1,983 ms |
コンパイル使用メモリ | 197,456 KB |
最終ジャッジ日時 | 2025-01-24 00:15:58 |
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 32 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef unsigned long long ull; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); long long K, Q; cin >> K >> Q; vector<ull> ans; ans.push_back(K); while(ans.back() <= 1000000000000000000ULL){ ull temp = ans.back(); ull ub = 9000000000000000000ULL / (K - 1); ull lb = 0; while(ub - lb > 1){ ull mid = (ub + lb) / 2; ull t = mid * (K - 1); if(t < temp) lb = mid; else ub = mid; } ans.push_back(ub + temp); } while(Q--){ ull N; cin >> N; if(N <= K) cout << N << endl; else{ int ind = lower_bound(ans.begin(), ans.end(), N) - ans.begin(); if(ans[ind] <= N) cout << ans[ind] << endl; else cout << ans[ind - 1] << endl; } } }