結果

問題 No.928 軽減税率?
ユーザー goodbatongoodbaton
提出日時 2019-11-29 14:40:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 1,000 ms
コード長 2,451 bytes
コンパイル時間 1,053 ms
コンパイル使用メモリ 100,780 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-30 22:52:30
合計ジャッジ時間 1,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 6 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 10 ms
6,940 KB
testcase_20 AC 8 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>

#include <iostream>
#include <complex>
#include <string>
#include <algorithm>
#include <numeric>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <unordered_map>
#include <unordered_set>
#include <bitset>

#include <functional>
#include <cassert>

typedef long long ll;
using namespace std;

#ifndef LOCAL
#define debug(x) ;
#else
#define debug(x) cerr << __LINE__ << " : " << #x << " = " << (x) << endl;

template <typename T1, typename T2>
ostream &operator<<(ostream &out, const pair<T1, T2> &p) {
  out << "{" << p.first << ", " << p.second << "}";
  return out;
}

template <typename T>
ostream &operator<<(ostream &out, const vector<T> &v) {
  out << '{';
  for (const T &item : v) out << item << ", ";
  out << "\b\b}";
  return out;
}
#endif

#define mod 1000000007 //1e9+7(prime number)
#define INF 1000000000 //1e9
#define LLINF 2000000000000000000LL //2e18
#define SIZE 200010

// GCC __gcd(long long A, long long B)

ll gcd(ll a, ll b){
  if(a == 0) return b;
  return gcd(b%a, a);
}

ll lcm(ll a, ll b){
  return a / gcd(a, b) * b;
}

const ll e9 = 1000000000;

int main(){
  int P, Q, A;

  cin >> P >> Q >> A;

  int d = P * Q == 0 ? 1 : lcm(P, Q);
  d = lcm(d, 100);

  ll inf = (e9 + d - 1) / d * d;

  ll ans = 0;

  for (int i=1; i<=d; i++) {
    int L = 0, R = (e9 - i) / d;

    int bp = i * P / 100;
    int bq = i * Q / 100 + A;
    int p = d * P / 100; //店内
    int q = d * Q / 100; //持ち帰り

    // bp + p * x < bq + q * x

    if (P == Q) {
      if (bp < bq) ans += R + 1;
    } else {
      if (P < Q && bp <= bq) {
        ans += R + 1 - (bp == bq);
      } else if (P > Q && bp >= bq) {
        ans += 0;
      } else if (P < Q) {
        // bp > bq
        int l = L, r = R;
        while(l < r) {
          int mid = (l + r) / 2;
          if (bp + p * mid >= bq + q * mid) {
            l = mid + 1;
          } else {
            r = mid;
          }
        }
        ans += R - l + 1;
      } else {
        // P > Q, bp < bq
        int l = L, r = R;
        while(l < r) {
          int mid = (l + r + 1) / 2;
          if (bp + p * mid < bq + q * mid) {
            l = mid;
          } else {
            r = mid - 1;
          }
        }
        debug(p);
        debug(l);
        ans += l + 1;
      }
    }
    debug(i);
    debug(ans);
  }

  cout << ans << endl;

  return 0;
}
0