結果

問題 No.1358 [Zelkova 2nd Tune *] 語るなら枚数を...
ユーザー firiexpfiriexp
提出日時 2021-01-23 18:56:39
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,992 ms / 2,000 ms
コード長 1,272 bytes
コンパイル時間 2,466 ms
コンパイル使用メモリ 127,788 KB
最終ジャッジ日時 2025-01-18 07:37:09
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = unsigned;
using u64 = unsigned long long;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max() / 32 * 15 + 208;

template<typename T>
T extgcd(T a, T b, T &x ,T &y){
    for (T u = y = 1, v = x = 0; a; ) {
        ll q = b/a;
        swap(x -= q*u, u);
        swap(y -= q*v, v);
        swap(b -= q*a, a);
    }
    return b;
}

template<class T>T divfloor(T x, T y){
    return x/y-(x%y ? (x < 0)^(y < 0) : 0);
}

template<class T>inline T divceil(T x, T y){
    return x/y+(x%y ? (x >= 0)^(y < 0) : 0);
}


void solve(){
    ll a, b, c, y;
    cin >> a >> b >> c >> y;
    if(a > c) swap(a, c);
    if(b > c) swap(b, c);
    ll ans = 0, g = gcd(a, b);
    a /= g; b /= g;
    for (ll x2 = y; x2 >= 0; x2 -= c) {
        if(x2 % g) continue;
        ll x = x2/g, p, q;
        extgcd(a, b, p, q);
        p *= x; q *= x;
        ans += max(0LL, divfloor(q, a)-divceil(-p, b)+1);
    }
    cout << ans%MOD << "\n";
}

int main() {
    int t;
    cin >> t;
    while(t--){
        solve();
    }
    return 0;
}
0