結果
問題 | No.1651 Removing Cards |
ユーザー | noya2 |
提出日時 | 2021-08-20 22:24:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 105 ms / 2,000 ms |
コード長 | 4,023 bytes |
コンパイル時間 | 4,794 ms |
コンパイル使用メモリ | 276,836 KB |
実行使用メモリ | 7,632 KB |
最終ジャッジ日時 | 2024-10-14 04:18:26 |
合計ジャッジ時間 | 9,586 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 7 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 70 ms
5,248 KB |
testcase_10 | AC | 70 ms
5,248 KB |
testcase_11 | AC | 72 ms
5,248 KB |
testcase_12 | AC | 71 ms
5,248 KB |
testcase_13 | AC | 73 ms
5,248 KB |
testcase_14 | AC | 73 ms
5,248 KB |
testcase_15 | AC | 105 ms
7,632 KB |
testcase_16 | AC | 99 ms
7,632 KB |
testcase_17 | AC | 102 ms
7,632 KB |
testcase_18 | AC | 103 ms
7,508 KB |
testcase_19 | AC | 101 ms
7,628 KB |
testcase_20 | AC | 99 ms
7,632 KB |
testcase_21 | AC | 105 ms
7,500 KB |
testcase_22 | AC | 101 ms
7,604 KB |
testcase_23 | AC | 82 ms
5,248 KB |
testcase_24 | AC | 41 ms
5,248 KB |
testcase_25 | AC | 66 ms
7,632 KB |
testcase_26 | AC | 64 ms
7,500 KB |
testcase_27 | AC | 105 ms
7,504 KB |
testcase_28 | AC | 105 ms
7,632 KB |
testcase_29 | AC | 96 ms
7,632 KB |
testcase_30 | AC | 93 ms
7,632 KB |
testcase_31 | AC | 95 ms
7,564 KB |
testcase_32 | AC | 56 ms
5,248 KB |
testcase_33 | AC | 58 ms
5,248 KB |
testcase_34 | AC | 57 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> /* #include <boost/multiprecision/cpp_dec_float.hpp> #include <boost/multiprecision/cpp_int.hpp> namespace mp = boost::multiprecision; using bint = mp::cpp_int; */ #include <atcoder/all> #include <iostream> #include <queue> #include <stack> #include <vector> #include <string> #include <set> #include <map> #include <random> #include <bitset> #define rep(i,n) for (int i = 0; i < int(n); ++i) #define repp(i,n,m) for (int i = m; i < int(n); ++i) #define repb(i,n) for (int i = int(n)-1; i >= 0; --i) #define fi first #define se second #define endl "\n" using namespace std; using namespace atcoder; //using namespace internal; using ll = long long; using ld = long double; using P = pair<int, int>; using PL = pair<long long, long long>; using Pxy = pair<long double, long double>; using pil = pair<int,ll>; using pli = pair<ll,int>; const int INF = 1001001007; const long long mod1 = 1000000007LL; const long long mod2 = 998244353LL; const ll inf = 2e18; const ld pi = 3.14159265358979323; const ld eps = 1e-7; template<typename T>void priv(vector<T> &v){if(v.size()==0){cout<<endl;}else{rep(i,v.size()-1)cout<<v[i]<<" ";cout<<v[v.size()-1]<<endl;}} template<typename T>void privv(vector<vector<T>> &v){rep(i,v.size()){rep(j,v[i].size()-1)cout<<v[i][j]<<" ";cout<<v[i][v[i].size()-1]<<endl;}} template<typename T>bool range(T a,T b,T x){return (a<=x&&x<b);} template<typename T>bool rrange(pair<T,T> a,pair<T,T> b,pair<T,T> x){return (range(a.fi,b.fi,x.fi)&&range(a.se,b.se,x.se));} template<typename T>void rev(vector<T> &v){reverse(v.begin(),v.end());} template<typename T>void sor(vector<T> &v, int f=0){sort(v.begin(),v.end());if(f!=0) rev(v);} template<typename T>bool chmin(T &a,const T &b){if(a>b){a=b;return true;}return false;} template<typename T>bool chmax(T &a,const T &b){if(a<b){a=b;return true;}return false;} template<typename T>void eru(vector<T> &v){sor(v);v.erase(unique(v.begin(),v.end()),v.end());} template<typename T>T cel(T a,T b){if (a%b==0)return a/b;return a/b +1;} template<typename T,typename U> void pout(pair<T,U> p){cout<<p.fi<<" "<<p.se<<endl;} template<typename T>void myswap(T &a,T &b){if(a>b)swap(a,b);} template<typename T>void mout(T a){cout<<a.val()<<endl;} void yes(){cout << "Yes" << endl;} void no (){cout << "No" << endl;} void yn (bool t){if(t)yes();else no();} void Yes(){cout << "YES" << endl;} void No (){cout << "NO" << endl;} void YN (bool t){if(t)Yes();else No();} void dout(ld h=-1.23456789){cout<<setprecision(20);if(abs(h+1.23456789)>eps)cout<<h<<endl;} void deb(ll h = INF-1) {cout << (h == INF-1 ? "!?" : to_string(h)) << endl;} void revs(string &s) {reverse(s.begin(),s.end());} vector<int> dx = {0,1,0,-1}; vector<int> dy = {1,0,-1,0}; const string ALP = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; const string alp = "abcdefghijklmnopqrstuvwxyz"; const string num = "0123456789"; ll gcds(ll a, ll b){ a = abs(a); b = abs(b); if (b == 0) return a; ll c = a % b; while (c != 0){ a = b; b = c; c = a % b; } return b; } ll tentou(vector<ll> ar){ int n = ar.size(); set<ll> st; rep(i,n) st.insert(ar[i]); map<ll,int> mp; int ind = 0; for (ll x : st){ mp[x] = ind; ind++; } fenwick_tree<ll> fw(ind); ll ans = 0; rep(i,n){ int a = mp[ar[i]]; ans += i - fw.sum(0,a+1); fw.add(a,1); } return ans; } /* alias g++='g++ -I/mnt/c/Users/Owner/Desktop/ac-library' */ struct vs{ vector<int> to; }; int main(){ ll k; cin >> k; vector<ll> v = {0}; ll x = 0; while (x < inf){ x += cel(x,k-1); if (x % k == 0) x++; v.emplace_back(x); } int q; cin >> q; vector<ll> ans(q); rep(i,q){ ll n; cin >> n; n--; int le = 0; int ri = v.size(); while (ri - le > 1){ int mid = (le + ri) / 2; if (v[mid] > n) ri = mid; else le = mid; } ans[i] = v[le]; } rep(i,q) cout << ans[i] + 1 << endl; }