結果
問題 | No.186 中華風 (Easy) |
ユーザー | shiba |
提出日時 | 2022-09-16 18:49:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 2,579 bytes |
コンパイル時間 | 1,072 ms |
コンパイル使用メモリ | 117,692 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-01 10:17:26 |
合計ジャッジ時間 | 1,894 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 3 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:109:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 109 | for(auto&[a,m]:X)cin>>a>>m; | ^
ソースコード
/* 整数(GCD,CRT)詰め合わせ */ #include <iostream> // cout, endl, cin #include <string> // string, to_string, stoi #include <vector> // vector #include <algorithm> // min, max, swap, sort, reverse, lower_bound, upper_bound #include <utility> // pair, make_pair #include <tuple> // tuple, make_tuple #include <cstdint> // int64_t, int*_t #include <cstdio> // printf #include <map> // map #include <queue> // queue, priority_queue #include <set> // set #include <stack> // stack #include <deque> // deque #include <unordered_map> // unordered_map #include <unordered_set> // unordered_set #include <bitset> // bitset #include <cctype> // isupper, islower, isdigit, toupper, tolower #include <iomanip> #include <climits> #include <cmath> #include <functional> #include <numeric> #include <regex> #include <array> #include <fstream> #include <sstream> using namespace std; // 返り値: a と b の最大公約数 // ax + by = gcd(a, b) を満たす (x, y) が格納される long extGCD(long a, long b, long &x, long &y) { if (b == 0) { x = 1; y = 0; return a; } long d = extGCD(b, a%b, y, x); y -= a/b * x; return d; } long GCD(long a,long b){ if(a<b)return GCD(b,a); if(b==0)return a; return GCD(b,a%b); } long LCM(long a,long b){ return (a/GCD(a,b))*b; } /* ax + by = c の一般解 x = alpha t + beta y = gamma t + delta */ bool Bezout(long a,long b,long c,long &alpha,long &beta,long &gamma,long &delta){ long x=0,y=0; long gcd=extGCD(a,b,x,y); if(c%gcd!=0){ return false; } x *= c/gcd; y *= c/gcd; gamma = a/gcd; delta = y; alpha = -b/gcd; beta = x; return true; } long mod(long a,long m){ if(a>=0)return a%m; return (m-(-a)%m)%m; } /* 中国剰余定理 */ bool CRT(long b1, long m1, long b2, long m2,long &r,long &m) { long p, q; long d = extGCD(m1, m2, p, q); if ((b2 - b1) % d != 0) return false; m = m1 * (m2/d); long tmp = (b2 - b1) / d * p % (m2/d); r = mod(b1 + m1 * tmp, m); return true; } bool CRT(const vector<pair<long,long>> &X,long &r,long &m) { int s = X.size(); r = X.front().first; m = X.front().second; bool ok = true; for(int i=1;i<s;i++){ ok = CRT(r,m,X[i].first,X[i].second,r,m); if(!ok){ break; } } return ok; } int main(){ vector<pair<long,long>> X(3); for(auto&[a,m]:X)cin>>a>>m; long a,m; if(CRT(X,a,m)){ if(a==0)cout<<m<<endl; else cout<<a<<endl; }else{ cout<<-1<<endl; } }