結果
問題 | No.186 中華風 (Easy) |
ユーザー | risujiroh |
提出日時 | 2019-02-03 02:00:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,905 bytes |
コンパイル時間 | 1,669 ms |
コンパイル使用メモリ | 171,520 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 18:33:51 |
合計ジャッジ時間 | 2,527 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using uint = unsigned int; using lint = long long int; using ulint = unsigned long long int; template<class T = int> using V = vector<T>; template<class T = int> using VV = V< V<T> >; template<class T, class U> void assign(V<T>& v, int n, const U& a) { v.assign(n, a); } template<class T, class... Args> void assign(V<T>& v, int n, const Args&... args) { v.resize(n); for (auto&& e : v) assign(e, args...); } lint tmod(lint a, lint p) { assert(p > 0); return (a %= p) < 0 ? a + p : a; } lint mod_inv(lint a, lint p) { a = tmod(a, p); lint b = p, x = 1, u = 0; while (b) { lint q = a / b; swap(a -= q * b, b); swap(x -= q * u, u); } return a == 1 ? tmod(x, p) : -1; } bool pre(V<lint>& a, V<lint>& p) { int n = a.size(); assert(p.size() == n); for (int i = 0; i < n; ++i) { a[i] = tmod(a[i], p[i]); } for (int i = 0; i < n; ++i) for (int j = i + 1; j < n; ++j) { lint d = __gcd(p[i], p[j]); if (a[i] % d != a[j] % d) return false; p[i] /= d; p[j] /= d; while (true) { lint e = __gcd(d, p[j]); if (e == 1) break; p[j] *= e; d /= e; } p[i] *= d; a[i] %= p[i]; a[j] %= p[j]; } return true; } lint CRT(const V<lint>& a, const V<lint>& p) { int n = a.size(); lint x = 0; V<lint> y(n); lint prod = 1; for (int i = 0; i < n; ++i) { y[i] = tmod(a[i] - x, p[i]); for (int j = 0; j < i; ++j) { (y[i] *= mod_inv(p[j], p[i])) %= p[i]; } x += prod * y[i]; prod *= p[i]; } return x; } int main() { cin.tie(nullptr); ios_base::sync_with_stdio(false); V<lint> a(3), p(3); for (int i = 0; i < 3; ++i) cin >> a[i] >> p[i]; if (!pre(a, p)) return cout << -1 << '\n', 0; lint res = CRT(a, p); if (res == 0) { res = accumulate(begin(p), end(p), 1LL, [](lint a, lint b) { return a * b; }); } cout << res << '\n'; }