結果
問題 | No.28 末尾最適化 |
ユーザー | EmKjp |
提出日時 | 2015-02-22 15:03:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 267 ms / 5,000 ms |
コード長 | 1,689 bytes |
コンパイル時間 | 807 ms |
コンパイル使用メモリ | 92,728 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-06-23 21:49:39 |
合計ジャッジ時間 | 1,513 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 267 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:42:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 42 | scanf("%d%d%d%d",&seed,&N,&K,&B); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<iostream> #include<sstream> #include<cstdio> #include<cstring> #include<algorithm> #include<string> #include<vector> #include<cmath> #include<set> #include<map> #include<stack> #include<queue> #include<numeric> #include<functional> #include<complex> using namespace std; #define BET(a,b,c) ((a)<=(b)&&(b)<(c)) #define FOR(i,n) for(int i=0,i##_end=(int(n));i<i##_end;i++) #define SZ(x) (int)(x.size()) #define ALL(x) (x).begin(),(x).end() #define MP make_pair #define FOR_EACH(it,v) for(__typeof(v.begin()) it=v.begin(),it_end=v.end() ; it != it_end ; it++) typedef vector<int> VI; typedef vector<VI> VVI; int countFactor(int x, int f){ int cnt = 0; while(x % f == 0){ x /= f; cnt++; } return cnt; } int main() { int q; cin>>q; FOR(_,q){ int seed, N, K, B; scanf("%d%d%d%d",&seed,&N,&K,&B); vector<long long> X(N+1); X[0] = seed; for(int i=1;i<=N;i++){ X[i] = 1 + (X[i-1]*X[i-1]+X[i-1]*12345) % 100000009 ; } vector<pair<int,int> > factors; for(int i=2;i<=36;i++){ if(B % i == 0){ int cnt = 0 ; while(B % i == 0){ B /= i; cnt++; } factors.push_back(MP(i, cnt)); } } int ans = 1<<28; for(auto p : factors){ VI a; FOR(i,N+1) { a.push_back(countFactor(X[i], p.first)); } sort(ALL(a)); int sum = 0; FOR(i,K) sum += a[i]; ans = min(ans, sum / p.second); } cout<<ans<<endl; } return 0; }