結果
問題 | No.28 末尾最適化 |
ユーザー | char134217728 |
提出日時 | 2018-08-27 04:02:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 115 ms / 5,000 ms |
コード長 | 2,502 bytes |
コンパイル時間 | 1,582 ms |
コンパイル使用メモリ | 172,188 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 04:05:13 |
合計ジャッジ時間 | 2,157 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 115 ms
6,944 KB |
コンパイルメッセージ
main.cpp:50:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 50 | main(){ | ^~~~
ソースコード
#include <bits/stdc++.h> #define FOR(i,a,b) for (int i=(a);i<(b);i++) #define FORR(i,a,b) for (int i=(a);i>=(b);i--) #define pb push_back #define pcnt __builtin_popcount #define show(x) cout<<#x<<" = "<<x<<endl; #define maxs(x,y) x = max(x,y) #define mins(x,y) x = min(x,y) #define fi first #define se second #define rng(a) (a.begin()),(a.end()) #define each(it,c) for(__typeof((c).begin()) it=(c).begin();it!=(c).end();it++) #define sz(x) (int)(x).size() #define mp make_pair using namespace std; typedef long long ll; typedef pair<int,int> pii; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<pii> vpii; typedef set<int> si; typedef pair<ll,ll> pll; typedef vector<ll> vl; typedef vector<vl> vvl; typedef vector<pll> vpll; typedef set<ll> sl; typedef __int128_t lll; typedef pair<lll,lll> plll; typedef vector<lll> vlll; template<typename T>string join(vector<T>&v) {stringstream s;FOR(i,0,sz(v))s<<' '<<v[i];return s.str().substr(1);} template<typename A, size_t N, typename T>void Fill(A (&array)[N], const T&v) {fill((T*)array,(T*)(array+N),v);} lll gcd(lll a,lll b,lll &x,lll &y){if(!b){x=1;y=0;return a;}lll d=gcd(b,a%b,y,x);y-=a/b*x;return d;} ll gcd(ll a,ll b){lll x=0,y=0; return gcd(a, b, x, y);} ll modpow(lll a,lll n,ll m){if(a==0)return a;lll p=1;for(;n>0;n/=2,a=a*a%m)if(n&1)p=p*a%m;return(ll)p;} void dout(double d){printf("%.12f\n",d);} const int iinf = 1e9; const ll linf = 1e18; const int mod = 1e8+9; const double pi = acos(-1); const double eps = 1e-10; int q, pl[] = {2,3,5,7,11,13,17,19,23,29,31}, d[3][27]; ll n, K, b, s; vpii v[37]; main(){ cin.tie(0); ios::sync_with_stdio(false); FOR(i, 2, 37){ int a = i; for(int b: pl){ if(b*b > a) break; if(a%b) continue; int c = 0; while(a%b==0) a/=b, c++; v[i].pb(pii(b, c)); } if(a>1) v[i].pb(mp(a, 1)); } cin >> q; FOR(i, 0, q){ cin >> s >> n >> K >> b; memset(d, 0, sizeof(d)); FOR(j, 0, n+1){ int ss = s; FOR(k, 0, sz(v[b])){ int dv = v[b][k].fi, cnt = 0; while(ss%dv == 0){ ss /= dv; cnt++; } d[k][cnt]++; } s = 1+s*(s+12345)%mod; } ll ans = iinf; FOR(k, 0, sz(v[b])){ ll c = 0, kk = K; FOR(j, 0, 27){ if(kk > d[k][j]){ c += ll(j) * d[k][j]; kk -= d[k][j]; }else{ c += ll(j) * kk; break; } } mins(ans, c / v[b][k].se); } printf("%d\n",ans); } return 0; }