結果
問題 | No.1711 Divide LCM |
ユーザー | chocorusk |
提出日時 | 2021-09-12 15:27:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 3,229 bytes |
コンパイル時間 | 3,636 ms |
コンパイル使用メモリ | 199,188 KB |
実行使用メモリ | 815,036 KB |
最終ジャッジ日時 | 2024-09-17 17:05:04 |
合計ジャッジ時間 | 7,616 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,004 KB |
testcase_01 | AC | 4 ms
6,940 KB |
testcase_02 | AC | 4 ms
6,944 KB |
testcase_03 | AC | 4 ms
7,496 KB |
testcase_04 | AC | 8 ms
8,008 KB |
testcase_05 | AC | 25 ms
8,640 KB |
testcase_06 | AC | 10 ms
6,944 KB |
testcase_07 | AC | 19 ms
7,620 KB |
testcase_08 | AC | 10 ms
6,980 KB |
testcase_09 | AC | 48 ms
8,132 KB |
testcase_10 | AC | 14 ms
7,104 KB |
testcase_11 | AC | 65 ms
8,904 KB |
testcase_12 | AC | 13 ms
6,940 KB |
testcase_13 | AC | 5 ms
6,944 KB |
testcase_14 | AC | 7 ms
7,236 KB |
testcase_15 | AC | 8 ms
6,980 KB |
testcase_16 | AC | 5 ms
7,492 KB |
testcase_17 | AC | 6 ms
8,000 KB |
testcase_18 | MLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
ソースコード
#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> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #include <list> #include <atcoder/all> #define popcount __builtin_popcount using namespace std; using namespace atcoder; typedef long long ll; typedef pair<int, int> P; int a[100010]; vector<P> f[100010]; int mx[1000010], p1[1000010]; int main() { int n; cin>>n; vector<int> w; unordered_map<int, int> mp; for(int i=0; i<n; i++){ int m; scanf("%d", &m); a[i]=1; for(int j=0; j<m; j++){ int p, e; scanf("%d %d", &p, &e); for(int j=0; j<e; j++) a[i]*=p; f[i].push_back({p, e}); mx[p]=max(mx[p], e); } } for(int i=2; i<=1000000; i++){ if(mx[i]==0) continue; p1[i]=1; for(int j=0; j<mx[i]; j++) p1[i]*=i; w.push_back(p1[i]); } for(int i=0; i<n; i++){ if(f[i].size()<w.size()) continue; bool ok=1; for(auto q:f[i]){ if(mx[q.first]!=q.second){ ok=0; break; } } if(ok){ cout<<-1<<endl; return 0; } } for(int i=0; i<n; i++){ vector<int> f1; for(auto q:f[i]){ if(mx[q.first]==q.second) f1.push_back(p1[q.first]); } int m=f1.size(); for(int j=0; j<(1<<m); j++){ int c=0, x=1; for(int k=0; k<m; k++){ if(j&(1<<k)){ c++; x*=f1[k]; } } if(c>=1) mp[x]++; } } queue<P> que; for(int i=0; i<w.size(); i++){ que.push({w[i], i}); } auto ans=[&](ll x){ int c=0; for(auto q:w){ if(x%q==0) c++; } printf("%d\n", c); bool used[100010]={}; for(auto q:w){ if(x%q!=0) continue; vector<int> v; for(int i=0; i<n; i++){ if(used[i]) continue; if(a[i]%q!=0){ v.push_back(i); used[i]=1; } } printf("%d", (int)v.size()); for(auto i:v){ printf(" %d", a[i]); } cout<<"\n"; } }; while(!que.empty()){ auto r=que.front(); que.pop(); ll x=r.first; if(mp.find(x)==mp.end()){ ans(x); return 0; } int i=r.second; for(int j=i+1; j<w.size(); j++){ ll x1=x*w[j]; // bool dame=0; // for(int l=0; l<n; l++){ // if(a[l]%x1==0){ // dame=1;break; // } // } // if(!dame){ // ans(x1);return 0; // } que.push({x1, j}); } } return 0; }