結果

問題 No.186 中華風 (Easy)
ユーザー HyadoHyado
提出日時 2019-12-27 17:11:28
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,243 bytes
コンパイル時間 1,670 ms
コンパイル使用メモリ 168,468 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-27 00:58:09
合計ジャッジ時間 2,813 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 1 ms
4,384 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 1 ms
4,380 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template<typename T> using V = vector<T>;
template<typename T> using VV = vector<vector<T>>;
#define fs first
#define sc second
#define rep(i,a,n) for(ll i=a;i<(ll)(n);++i)
#define ENDL '\n'
typedef pair<ll,ll> PL;


template<typename T>
T extgcd(T a,T b,T &x,T &y){
  if(!b){x=1;y=0;return a;}
  T d=extgcd(b,a%b,y,x); 
  y-=(a/b)*x;
  return d;
}
//ax+by=gcd(a,b)を満たすx,y 返り値はgcd

template<typename T>
pair<T,T> ChineseRem(const vector<T> &b,const vector<T> &m){
  T r=0,M=1;
  for(int i=0;i<(int)m.size();++i){
    T p,q;
    T g=extgcd(M,m[i],p,q);
    if((b[i]-r)%g)return {0,-1};
    r+=M*(((b[i]-r)/g*p)%(m[i]/g));
    M*=m[i]/g;
  }
  return {(r%M+M)%M,M};
}
//x=a[i](modm[i]) を満たすx(0<=x<Π(m[i])) を求める
//法が互いに素でない場合、解が存在しない場合がある



signed main(){
  cin.tie(0);ios::sync_with_stdio(false);
  cout<<fixed<<setprecision(20);
  V<ll> x(3),y(3);
  rep(i,0,3){
    cin>>x[i]>>y[i];
  }
  PL p=ChineseRem(x,y);
  if(p.sc==-1)cout<<-1<<ENDL;
  else{
    if(p.fs)cout<<p.fs<<ENDL;
    else cout<<p.sc<<ENDL;
  }
}
//( ・ __ ・ ) KEEP BEING ORGANIZED
//CHECK overflow,vector_size,what to output?
0