結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー arktan763arktan763
提出日時 2020-02-05 20:08:14
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 5,521 bytes
コンパイル時間 1,651 ms
コンパイル使用メモリ 167,720 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-10-24 05:10:14
合計ジャッジ時間 7,348 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 2 ms
4,368 KB
testcase_02 AC 2 ms
4,368 KB
testcase_03 AC 2 ms
4,368 KB
testcase_04 AC 2 ms
4,368 KB
testcase_05 RE -
testcase_06 AC 2 ms
4,368 KB
testcase_07 AC 2 ms
4,368 KB
testcase_08 AC 2 ms
4,368 KB
testcase_09 AC 2 ms
4,368 KB
testcase_10 AC 2 ms
4,368 KB
testcase_11 AC 2 ms
4,368 KB
testcase_12 AC 2 ms
4,368 KB
testcase_13 AC 2 ms
4,368 KB
testcase_14 AC 38 ms
4,368 KB
testcase_15 AC 85 ms
4,368 KB
testcase_16 AC 34 ms
4,368 KB
testcase_17 AC 2 ms
4,368 KB
testcase_18 AC 41 ms
4,368 KB
testcase_19 AC 54 ms
4,368 KB
testcase_20 AC 81 ms
4,368 KB
testcase_21 AC 50 ms
4,368 KB
testcase_22 AC 15 ms
4,368 KB
testcase_23 AC 71 ms
4,368 KB
testcase_24 AC 19 ms
4,368 KB
testcase_25 AC 46 ms
4,368 KB
testcase_26 AC 78 ms
4,368 KB
testcase_27 AC 58 ms
4,368 KB
testcase_28 AC 57 ms
4,368 KB
testcase_29 AC 86 ms
4,368 KB
testcase_30 AC 3 ms
4,368 KB
testcase_31 AC 2 ms
4,368 KB
testcase_32 AC 44 ms
4,368 KB
testcase_33 AC 41 ms
4,368 KB
testcase_34 AC 30 ms
4,368 KB
testcase_35 AC 65 ms
4,368 KB
testcase_36 AC 4 ms
4,368 KB
testcase_37 AC 50 ms
4,368 KB
testcase_38 AC 41 ms
4,368 KB
testcase_39 AC 13 ms
4,368 KB
testcase_40 AC 78 ms
4,368 KB
testcase_41 AC 22 ms
4,368 KB
testcase_42 AC 68 ms
4,368 KB
testcase_43 AC 33 ms
4,368 KB
testcase_44 AC 60 ms
4,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define int long long
// #define double long double
#define FOR(i, a, b) for(int i = (a); i < (b); ++i)
#define FORR(i, a, b) for(int i = (a); i > (b); --i)
#define REP(i, n) for(int i = 0; i < (n); ++i)
#define REPR(i, n) for(int i = n; i >= 0; i--)
#define FOREACH(x, a) for(auto &(x) : (a))
#define VECCIN(x)                                                              \
    for(auto &youso_ : (x)) cin >> youso_
#define bitcnt(x) __builtin_popcount(x)
#define lbit(x) __builtin_ffsll(x)
#define rbit(x) (64 - __builtin_clzll(x))
#define fi first
#define se second
#define All(a) (a).begin(), (a).end()
#define rAll(a) (a).rbegin(), (a).rend()
#define cinfast() cin.tie(0), ios::sync_with_stdio(false)
#define PERM(c)                                                                \
    sort(All(c));                                                              \
    for(bool cp = true; cp; cp = next_permutation(All(c)))
#define COMB(n, k)                                                             \
    for(ll bit = (1LL << k) - 1; bit < (1LL << n); bit = next_combination(bit))
#define PERM2(n, k)                                                            \
    COMB(n, k) {                                                               \
        vector<int> sel;                                                       \
        for(int bitindex = 0; bitindex < n; bitindex++)                        \
            if(bit >> bitindex & 1) sel.emplace_back(bitindex);                \
        PERM(sel) { Printv(sel); }                                             \
    }
#define MKORDER(n)                                                             \
    vector<int> od(n);                                                         \
    iota(All(od), 0LL);

template <typename T = long long> inline T IN() {
    T x;
    cin >> x;
    return (x);
}
inline void CIN() {}
template <class Head, class... Tail>
inline void CIN(Head &&head, Tail &&... tail) {
    cin >> head;
    CIN(move(tail)...);
}
template <class Head> inline void COUT(Head &&head) { cout << (head) << "\n"; }
template <class Head, class... Tail>
inline void COUT(Head &&head, Tail &&... tail) {
    cout << (head) << " ";
    COUT(forward<Tail>(tail)...);
}

#define CCIN(...)                                                              \
    char __VA_ARGS__;                                                          \
    CIN(__VA_ARGS__)
#define DCIN(...)                                                              \
    double __VA_ARGS__;                                                        \
    CIN(__VA_ARGS__)
#define LCIN(...)                                                              \
    long long __VA_ARGS__;                                                     \
    CIN(__VA_ARGS__)
#define SCIN(...)                                                              \
    string __VA_ARGS__;                                                        \
    CIN(__VA_ARGS__)
#define Printv(v)                                                              \
    {                                                                          \
        FOREACH(x, v) { cout << x << " "; }                                    \
        cout << "\n";                                                          \
    }
template <typename T = string> inline void eputs(T s) {
    cout << s << "\n";
    exit(0);
}
template <typename A, size_t N, typename T>
void Fill(A (&array)[N], const T &val) {
    std::fill((T *)array, (T *)(array + N), val);
}

long long next_combination(long long sub) {
    long long x = sub & -sub, y = sub + x;
    return (((sub & ~y) / x) >> 1) | y;
}

// generic lambdas
template <typename F>
#if defined(__has_cpp_attribute) && __has_cpp_attribute(nodiscard)
[[nodiscard]]
#elif defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ >= 4)
__attribute__((warn_unused_result))
#endif // defined(__has_cpp_attribute) && __has_cpp_attribute(nodiscard)
    static inline constexpr decltype(auto)
    fix(F &&f) noexcept {
    return [f = std::forward<F>(f)](auto &&... args) {
        return f(f, std::forward<decltype(args)>(args)...);
    };
}

template <typename T> using PQG = priority_queue<T, vector<T>, greater<T>>;
template <typename T> using PQ = priority_queue<T>;

typedef long long ll;
typedef vector<ll> VL;
typedef vector<VL> VVL;
typedef pair<ll, ll> PL;
typedef vector<PL> VPL;
typedef vector<bool> VB;
typedef vector<double> VD;
typedef vector<string> VS;

const int INF = 1e9;
const int MOD = 1e9 + 7;
// const int MOD = 998244353;
const ll LINF = 1e18;
const ll dw[] = {1, 1, 0, -1, -1, -1, 0, 1};
const ll dh[] = {0, 1, 1, 1, 0, -1, -1, -1};
#define PI 3.141592653589793238
#define EPS 1e-7

ll extgcd(ll a, ll b, ll &x, ll &y) {
    ll d = a;
    if(b != 0) {
        d = extgcd(b, a % b, y, x);
        y -= (a / b) * x;
    } else {
        x = 1;
        y = 0;
    }
    return d;
}

signed main() {
    LCIN(P, Q, N);
    ll cnt = 0, pp, qq;
    ll d = extgcd(P, Q, pp, qq);
    REP(i, N) {
        LCIN(X, Y);
        if(X % d || Y % d) continue;
        ll dx = abs(abs(pp * (X / d)) - abs(qq * (Y / d)));
        ll dy = abs(abs(qq * (X / d)) - abs(pp * (Y / d)));
        if(dx % 2 == 0 && dy % 2 == 0)
            cnt++;
        else if(dx % 2 == 1 && dy % 2 == 1) {
            if(Q / d % 2 || P / d % 2) cnt++;
        } else {
            if((Q / d % 2) ^ (P / d % 2)) cnt++;
        }
    }
    cout << cnt << "\n";
}
0