結果
問題 | No.1358 [Zelkova 2nd Tune *] 語るなら枚数を... |
ユーザー | kkktym |
提出日時 | 2021-01-22 23:03:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,550 bytes |
コンパイル時間 | 1,179 ms |
コンパイル使用メモリ | 106,920 KB |
実行使用メモリ | 19,280 KB |
最終ジャッジ日時 | 2024-06-08 17:19:06 |
合計ジャッジ時間 | 14,410 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 18 ms
19,104 KB |
testcase_01 | AC | 14 ms
19,052 KB |
testcase_02 | AC | 15 ms
19,132 KB |
testcase_03 | AC | 17 ms
19,144 KB |
testcase_04 | AC | 16 ms
18,984 KB |
testcase_05 | AC | 18 ms
19,148 KB |
testcase_06 | AC | 41 ms
19,060 KB |
testcase_07 | AC | 34 ms
19,192 KB |
testcase_08 | AC | 31 ms
19,092 KB |
testcase_09 | AC | 30 ms
19,136 KB |
testcase_10 | AC | 31 ms
19,036 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <string> #include <utility> #include <set> #include <map> #include <cmath> #include <queue> #include <cstdio> #include <limits> #define rep(i,n) for(int i = 0; i < n; ++i) #define rep1(i,n) for(int i = 1; i <= n; ++i) using namespace std; template<class T>bool chmax(T &a, const T &b) { if(a < b){ a = b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if(a > b){ a = b; return 1; } return 0; } template<class T> inline int sz(T &a) { return a.size(); } using ll = long long; using ld = long double; using pi = pair<int,int>; using pl = pair<ll,ll>; using vi = vector<int>; using vvi = vector<vi>; using vl = vector<ll>; using vvl = vector<vl>; const int inf = numeric_limits<int>::max(); const ll infll = numeric_limits<ll>::max(); // ユークリッドの互除法で最大公約数を求める ll gcd(ll a,ll b){ if(b==0) return a; return gcd(b,a%b); } // 最小公倍数 ll lcm(ll a,ll b){ return a/gcd(a,b)*b; } // 拡張ユークリッドの互除法 // ap + bq = gcd(a, b) となる (p, q) を求める. // 返り値はgcd(a, b) ll ExtGcd(ll a, ll b, ll &p, ll &q) { if (b == 0) { p = 1; q = 0; return a; } ll d = ExtGcd(b, a%b, q, p); q -= a/b * p; return d; } // 中国剰余定理 // x = b1 (mod m1), x = b2 (mod m2), m1とm2は互いに素, を満たすようなxを求める. // 返り値を (r, m) とすると解は x = r (mod m) // 解なしの場合は (0, -1) を返すよ pair<ll, ll> CRT(ll b1, ll m1, ll b2, ll m2) { ll p, q; ll d = ExtGcd(m1, m2, p, q); // p is inv of m1/d (mod. m2/d) if ((b2 - b1) % d != 0) return {0, -1}; ll m = m1 * (m2/d); // lcm of (m1, m2) ll tmp = (b2 - b1) / d * p % (m2/d); ll r = ((b1 + m1 * tmp) % m + m) % m; return {r, m}; } // Modint // modint<MOD> で宣言 template<long long MOD> struct modint{ long long x; long long mod = MOD; modint(long long x=0):x(x%MOD){} modint& operator+=(const modint a){ if((x+=a.x)>=MOD) x-=MOD; return *this; } modint& operator-=(const modint a){ if((x += MOD-a.x)>=MOD) x-=MOD; return *this; } modint& operator*=(const modint a){ (x*=a.x)%=MOD; return *this; } modint operator+(const modint a) const{ modint res(*this); return res+=a; } modint operator-(const modint a) const{ modint res(*this); return res-=a; } modint operator*(const modint a) const{ modint res(*this); return res*=a; } modint pow(long long t) const{ if(!t) return 1; modint a = pow(t>>1); a*=a; if(t&1) a*=*this; return a; } //for prime mod modint inv() const{ return pow(MOD-2); } modint& operator/=(const modint a){ return (*this) *= a.inv(); } modint operator/(const modint a) const{ modint res(*this); return res/=a; } }; using mint = modint<1000000007>; int main() { int t; cin >> t; while(t-- > 0) { vl a(3); rep(i,3) cin >> a[i]; ll n; cin >> n; sort(a.begin(),a.end()); ll x = a[0], y = a[1], z = a[2]; ll g = lcm(x,y); vector<pl> dp(1e+6+1, {-1,-1}); mint res; while(n > 0) { pl p; if(dp[n%y].first >= 0) p = dp[n%y]; else { p = CRT(n%y, y, 0, x); dp[n%y] = p; } if(p.second != -1) { ll r = p.first; if(n-r >= 0) { ll a = r/x, b = (n-r)/y; ll aa = g/x, bb = g/y; res += mint(1 + a/aa + b/bb); } } n -= z; } cout << res.x << "\n"; } return 0; }