結果

問題 No.849 yuki国の分割統治
ユーザー chocoruskchocorusk
提出日時 2019-03-26 21:23:53
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,378 bytes
コンパイル時間 1,218 ms
コンパイル使用メモリ 104,140 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-04-16 06:57:54
合計ジャッジ時間 4,416 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 95 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 129 ms
6,784 KB
testcase_23 AC 123 ms
6,528 KB
testcase_24 AC 100 ms
5,376 KB
testcase_25 WA -
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 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
void extgcd(ll& a, ll& b, ll& c, ll& d){
	if(b==0) return;
	ll q=d/b;
	c-=a*q, d-=b*q;
	swap(a, c), swap(b, d);
	extgcd(a, b, c, d);
}
ll a, b, c, d;
int solve(){
    extgcd(a, b, c, d);
    if(a<=0) a=-a;
    c%=a;
    int n; cin>>n;
    set<P> st;
    for(int i=0; i<n; i++){
        ll x, y; cin>>x>>y;
        ll q=y/d;
        x-=q*c, y-=q*d;
        y=(y%a+a)%a;
        st.insert(P(x, y));
    }
    return st.size();
}
int solve0(){
    bool sw=0;
    if(b==0 && d==0){
        swap(a, b), swap(c, d);
        sw=1;
    }
    extgcd(a, b, c, d);
    ll p=c, q=d;
    int n; cin>>n;
    set<P> st;
    for(int i=0; i<n; i++){
        ll x, y; cin>>x>>y;
        if(sw) swap(x, y);
        ll t=y/q;
        x-=t*p, y-=t*q;
        st.insert(P(x, y));
    }
    return st.size();
}
int main()
{
    cin>>a>>b>>c>>d;
    if(a*d-b*c==0){
        cout<<solve0()<<endl;
    }else{
        cout<<solve()<<endl;
    }
    return 0;
}
0