結果
問題 | No.1711 Divide LCM |
ユーザー | TKTYI |
提出日時 | 2021-10-15 23:10:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,857 bytes |
コンパイル時間 | 3,640 ms |
コンパイル使用メモリ | 246,780 KB |
実行使用メモリ | 10,528 KB |
最終ジャッジ日時 | 2024-09-17 18:11:03 |
合計ジャッジ時間 | 9,588 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,812 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
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 <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; typedef long long int ll; typedef long double ld; #define FOR(i,l,r) for(ll i=l;i<r;i++) #define REP(i,n) FOR(i,0,n) #define RFOR(i,l,r) for(ll i=r-1;i>=l;i--) #define RREP(i,n) RFOR(i,0,n) #define ALL(x) x.begin(),x.end() #define P pair<ll,ll> #define F first #define S second #define BS(A,x) binary_search(ALL(A),x) #define LB(A,x) (ll)(lower_bound(ALL(A),x)-A.begin()) #define UB(A,x) (ll)(upper_bound(ALL(A),x)-A.begin()) #define COU(A,x) UB(A,x)-LB(A,x) template<typename T>using min_priority_queue=priority_queue<T,vector<T>,greater<T>>; //using mint=modint1000000007; using mint=modint998244353; signed main(){ ll N;cin>>N; vector<ll>A(N,1); vector<vector<P>>X(N); set<ll>prime; REP(i,N){ ll m;cin>>m; REP(j,m){ ll p,e;cin>>p>>e;prime.insert(p);X[i].push_back(P(p,e));A[i]*=pow(p,e); } } ll K=prime.size();vector<ll>p;for(auto i:prime)p.push_back(i);vector<ll>MAX(K); REP(i,N)REP(j,X[i].size())MAX[LB(p,X[i][j].F)]=max(MAX[LB(p,X[i][j].F)],X[i][j].S); vector<vector<ll>>Q(N),R(K); REP(i,N)REP(j,X[i].size())if(MAX[LB(p,X[i][j].F)]==X[i][j].S)Q[i].push_back(LB(p,X[i][j].F)); REP(i,N)if(Q[i].size()==K){cout<<-1<<endl;return 0;} REP(i,N)for(ll j:Q[i])R[j].push_back(i); ll k=2; while(1){ vector<bool>XX(K); REP(i,k)XX[K-1-i]=1; do{ vector<bool>T(N); REP(i,K)if(XX[i]){ REP(j,N)if(!binary_search(ALL(R[i]),j))T[j]=1; } if(count(ALL(T),1)==N){ cout<<k<<endl; REP(i,K)if(XX[i]){ vector<ll>ans; REP(j,N)if(!binary_search(ALL(R[i]),j)&&T[j]){T[j]=0;ans.push_back(j);} cout<<ans.size();for(ll i:ans)cout<<" "<<A[i];cout<<endl; } return 0; } }while(next_permutation(ALL(X))); k++; } return 0; }