結果

問題 No.849 yuki国の分割統治
ユーザー mugen_1337mugen_1337
提出日時 2020-04-07 20:50:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,911 bytes
コンパイル時間 2,178 ms
コンパイル使用メモリ 209,156 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-07-08 00:57:55
合計ジャッジ時間 4,030 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 34 ms
5,376 KB
testcase_08 AC 44 ms
6,912 KB
testcase_09 AC 41 ms
6,400 KB
testcase_10 AC 39 ms
5,376 KB
testcase_11 AC 38 ms
6,016 KB
testcase_12 AC 36 ms
5,376 KB
testcase_13 AC 44 ms
6,400 KB
testcase_14 AC 41 ms
5,888 KB
testcase_15 AC 39 ms
6,784 KB
testcase_16 AC 54 ms
8,704 KB
testcase_17 AC 32 ms
5,376 KB
testcase_18 AC 51 ms
9,088 KB
testcase_19 AC 42 ms
5,760 KB
testcase_20 AC 49 ms
7,552 KB
testcase_21 AC 25 ms
5,376 KB
testcase_22 AC 52 ms
8,320 KB
testcase_23 AC 52 ms
7,808 KB
testcase_24 AC 39 ms
5,376 KB
testcase_25 AC 57 ms
9,984 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define ALL(x) x.begin(),x.end()
#define rep(i,n) for(int i=0;i<(n);i++)
#define debug(v) cout<<#v<<":";for(auto x:v){cout<<x<<' ';}cout<<endl;
#define INF 1000000000
#define mod 1000000007
using ll=long long;
const ll LINF=1001002003004005006ll;
int dx[]={1,0,-1,0};
int dy[]={0,1,0,-1};
// ll gcd(ll a,ll b){return b?gcd(b,a%b):a;}
template<class T>bool chmax(T &a,const T &b){if(a<b){a=b;return true;}return false;}
template<class T>bool chmin(T &a,const T &b){if(b<a){a=b;return true;}return false;}

ll A,B,C,D;

void f(pair<ll,ll> u,pair<ll,ll> v){
    if(v.first==0){
        A=u.first;B=u.second;
        D=v.second;
        if(A<0){
            A=-A;B=-B;
        }
        if(D<0) D=-D;
        return ;
    }

    if(u.first<v.first){
        f(v,u);
    }else{
        u.first-=v.first;
        u.second-=v.second;
        f(u,v);
    }
}

signed main(){
    cin.tie(0);
    ios::sync_with_stdio(0);

    ll a,b,c,d;cin>>a>>b>>c>>d;

    int n;cin>>n;
    vector<pair<ll,ll>> v(n);
    rep(i,n) cin>>v[i].first>>v[i].second;

    if(a==0 and c==0){
        swap(a,b);swap(c,d);rep(i,n)swap(v[i].first,v[i].second);
    }
    f(make_pair(a,b),make_pair(c,d));
    //C=0
    /* 代表点への移動
    x' = x + k*A + l*0
    y' = y + k*B + l*D
    代表点は0<=x<Aかつ0<=y<Dとなる.これは各x,yに対し唯一必ず存在
    */
    set<pair<ll,ll>> st;
    for(auto p:v){
        
        ll x=p.first,y=p.second;
        pair<ll,ll> res;
        ll k;
        if(x>=0){
            res.first=x%A;
            k=-(x/A);
        }else{
            k=(abs(x)+A-1)/A;
            res.first=x+k*A;
        }
        res.second=y+k*B;
        if(D!=0){
            res.second=y+k*B;
            res.second%=D;
            res.second+=D;
            res.second%=D;
        }
        st.insert(res);
    }
    cout<<st.size()<<endl;
    return 0;
}
0