結果
問題 | No.187 中華風 (Hard) |
ユーザー | anta |
提出日時 | 2015-04-20 02:26:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 63 ms / 3,000 ms |
コード長 | 4,721 bytes |
コンパイル時間 | 1,036 ms |
コンパイル使用メモリ | 105,044 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-04 16:14:50 |
合計ジャッジ時間 | 2,467 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 42 ms
5,376 KB |
testcase_03 | AC | 41 ms
5,376 KB |
testcase_04 | AC | 58 ms
5,376 KB |
testcase_05 | AC | 62 ms
5,376 KB |
testcase_06 | AC | 63 ms
5,376 KB |
testcase_07 | AC | 58 ms
5,376 KB |
testcase_08 | AC | 37 ms
5,376 KB |
testcase_09 | AC | 36 ms
5,376 KB |
testcase_10 | AC | 37 ms
5,376 KB |
testcase_11 | AC | 60 ms
5,376 KB |
testcase_12 | AC | 61 ms
5,376 KB |
testcase_13 | AC | 11 ms
5,376 KB |
testcase_14 | AC | 10 ms
5,376 KB |
testcase_15 | AC | 42 ms
5,376 KB |
testcase_16 | AC | 41 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 | 47 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 60 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:149:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 149 | scanf("%d", &N); | ~~~~~^~~~~~~~~~
ソースコード
#include <string> #include <vector> #include <algorithm> #include <numeric> #include <set> #include <map> #include <queue> #include <iostream> #include <sstream> #include <cstdio> #include <cmath> #include <ctime> #include <cstring> #include <cctype> #include <cassert> #include <limits> #include <functional> #include <bitset> #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define rer(i,l,u) for(int (i)=(int)(l);(i)<=(int)(u);++(i)) #define reu(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i)) #if defined(_MSC_VER) || __cplusplus > 199711L #define aut(r,v) auto r = (v) #else #define aut(r,v) __typeof(v) r = (v) #endif #define each(it,o) for(aut(it, (o).begin()); it != (o).end(); ++ it) #define all(o) (o).begin(), (o).end() #define pb(x) push_back(x) #define mp(x,y) make_pair((x),(y)) #define mset(m,v) memset(m,v,sizeof(m)) #define INF 0x3f3f3f3f #define INFL 0x3f3f3f3f3f3f3f3fLL using namespace std; typedef vector<int> vi; typedef pair<int,int> pii; typedef vector<pair<int,int> > vpii; typedef long long ll; template<typename T, typename U> inline void amin(T &x, U y) { if(y < x) x = y; } template<typename T, typename U> inline void amax(T &x, U y) { if(x < y) x = y; } vector<bool> isprime; vector<int> primes; void sieve(int n){ if((int)isprime.size() >= n+1) return; isprime.assign(n+1, true); isprime[0] = isprime[1] = false; int sqrtn = (int)(sqrt(n * 1.) + .5); for(int i = 2; i <= sqrtn; i ++) if(isprime[i]) { for(int j = i * i; j <= n; j += i) isprime[j] = false; } primes.clear(); for(int i = 2; i <= n; i ++) if(isprime[i]) primes.push_back(i); } typedef int FactorsInt; typedef vector<pair<FactorsInt,int> > Factors; void primeFactors(FactorsInt x, Factors &out_v) { out_v.clear(); int sqrtx = (int)(sqrt(x*1.) + 10.5); sieve(sqrtx); for(vector<int>::const_iterator p = primes.begin(); p != primes.end(); ++ p) { if(*p > sqrtx) break; if(x % *p == 0) { int t = 1; x /= *p; while(x % *p == 0) { t ++; x /= *p; } out_v.push_back(make_pair(*p, t)); } } if(x != 1) out_v.push_back(make_pair(x, 1)); } template<typename Num> bool expandLCE(const vector<pair<Num,Num> > &equations, vector<pair<Num,Num> > &res) { int n = equations.size(); Factors fs; res.clear(); map<Num,pair<Num,Num> > a; for(int i = 0; i < n; ++ i) { int x = equations[i].first; primeFactors(equations[i].second, fs); for(int j = 0; j < (int)fs.size(); ++ j) { int p = fs[j].first, q = fs[j].second, pq = p; for(int k = 1; k < q; ++ k) pq *= p; pair<Num,Num> &t = a[p]; if(t.first == 0) t.first = 1; Num u = min(t.first, pq); if((t.second - x) % u != 0) return false; if(t.first < pq) { t.first = pq; t.second = x % pq; } } } for(typename map<Num,pair<Num,Num> >::iterator it = a.begin(); it != a.end(); ++ it) res.push_back(make_pair(it->second.first, it->second.second)); return true; } int inverse(signed a, const int MOD) { a %= MOD; if(a < 0) a += MOD; signed b = MOD, u = 1, v = 0; while(b) { signed t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } if(u < 0) u += MOD; return u; } //prefix[i] = CRT(pairs[0..i-1]) mod pairs[i].first を求める // //pairsの一番後ろに(Mod,-1)を追加しておくことによって // CRT(pairs) mod Mod を求めることができる //gcd(pairs[i].first, pairs[j].first) == 1 for i≠j を仮定する //さらに、pairs[i].first > 1 も仮定する! void prefixCRT(const vector<pair<int,int> > &pairs, vector<int> &prefixes) { int n = pairs.size(); vector<int> ts(n); for(int i = 0; i < n; ++ i) { int m = pairs[i].first, x = 1; for(int j = 0; j < i; ++ j) x = (long long)x * pairs[j].first % m; ts[i] = inverse(x, m); } prefixes.resize(n); for(int i = 0; i < n; ++ i) { int m = pairs[i].first; int n1 = 1, a = 0; for(int j = 0; j < i; ++ j) { int n2 = pairs[j].first, a2 = pairs[j].second; int h = (long long)(a2 - prefixes[j]) * ts[j] % n2; if(h < 0) h += n2; a = (a + (long long)n1 * h) % m; n1 = (long long)n1 * pairs[j].first % m; } prefixes[i] = a; } } int main() { sieve(31623); int N; scanf("%d", &N); vector<pii> equations; rep(i, N) { int X, Y; cin >> X >> Y; equations.push_back(mp(X, Y)); } vector<pair<int,int> > pairs; bool ok = expandLCE(equations, pairs); if(!ok) { puts("-1"); return 0; } const int Mod = 1000000007; pairs.push_back(make_pair(Mod, -1)); vector<int> prefixes; prefixCRT(pairs, prefixes); int ans = prefixes.back(); bool zero = true; rep(i, pairs.size() - 1) zero &= pairs[i].second == 0; if(zero) { int prod = 1; rep(i, pairs.size() - 1) prod = (ll)prod * pairs[i].first % Mod; ans += prod; } printf("%d\n", ans); return 0; }