結果
問題 | No.1004 サイコロの実装 (2) |
ユーザー | hanachanX |
提出日時 | 2020-04-12 16:00:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,788 bytes |
コンパイル時間 | 2,524 ms |
コンパイル使用メモリ | 181,816 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-22 02:41:24 |
合計ジャッジ時間 | 8,597 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
ソースコード
#pragma GCC optimize("O3") #pragma GCC target("avx") #include <bits/stdc++.h> #define rep(i ,n) for(int i=0;i<(int)(n);++i) #define repr(i ,n) for(int i=n;i>(int)(n);--i) #define rep1(i ,n) for(int i=1;i<=(int)(n);++i) #define ALL(a) a.begin(), a.end() #define SORT(a) sort(ALL(a)) #define bit_check(bit, i) ((bit>>(i)) & 1) #define PRINT(x) printf("%d\n",(x)); using namespace std; typedef long long int int64; typedef unsigned long long uint64; template<class T> using V = vector<T>; using I = int; using VI = V<I>; const int INF = 2e9; const int64 MOD = 1e9 + 7; template <class T> inline bool chmin(T& a, T b){if(a>b){a=b; return true;} return false;} template <class T> inline bool chmax(T& a, T b){if(a<b){a=b; return true;} return false;} vector<uint64> x; vector<uint64> ta , ao; int main(){ uint64 a , b , x0 ,n; cin >> a >> b >> x0 >> n; if( n == 0) { cout << 0 << " " << 0 << endl; return 0; } x.resize(n*2+1); ta.resize(n+1); ao.resize(n+1); x[0] = x0; for(int i = 1; i <= n*2 ; ++i){ x[i]=(a*x[i-1]+b)%(uint64)pow(2,32); } uint64 t_[2]={0}; uint64 a_[2]={0}; uint64 i , j; ta[0]=x[1]%6+1; ao[0]=x[2]%6+1; for(i=3 , j=1; j < n ; i+=2 , ++j){ ta[i]=ta[i-1]+x[i]%6+1; } for(i=4 , j=1; j < n ; i+=2 , ++j){ ao[i]=ao[i-1]+x[i]%6+1; } for(int i = 0 ; i <=n ; ++i){ if(ta[i]%2 == 0) ++t_[0]; else ++t_[0]; } for(int i = 0 ; i <= n ; ++i){ if(ao[i]%2 == 0) ++a_[0]; else ++a_[1]; } //cout << "takahashi black:" << t_[0] << " takahashi white:" << t_[1] << endl; //cout << "Aoki black:" << a_[0] << " Aoki white:" << a_[1] << endl; chmin(t_[0] , t_[1]); chmin(a_[0] , a_[1]); cout << t_[0] << " " << a_[0] << endl; }