結果
問題 | No.1711 Divide LCM |
ユーザー | 沙耶花 |
提出日時 | 2021-10-15 22:53:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,104 bytes |
コンパイル時間 | 4,998 ms |
コンパイル使用メモリ | 282,056 KB |
実行使用メモリ | 36,864 KB |
最終ジャッジ日時 | 2024-09-17 17:57:12 |
合計ジャッジ時間 | 17,561 ms |
ジャッジサーバーID (参考情報) |
judge2 / 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 | 3 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 260 ms
23,808 KB |
testcase_19 | AC | 254 ms
23,936 KB |
testcase_20 | AC | 259 ms
23,936 KB |
testcase_21 | AC | 250 ms
25,344 KB |
testcase_22 | AC | 139 ms
16,512 KB |
testcase_23 | WA | - |
testcase_24 | AC | 158 ms
21,520 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 167 ms
22,984 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 182 ms
24,344 KB |
testcase_31 | WA | - |
testcase_32 | AC | 254 ms
29,628 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 420 ms
36,864 KB |
testcase_39 | AC | 292 ms
31,288 KB |
testcase_40 | AC | 4 ms
5,376 KB |
testcase_41 | AC | 4 ms
5,376 KB |
testcase_42 | AC | 4 ms
5,376 KB |
testcase_43 | AC | 4 ms
5,376 KB |
testcase_44 | AC | 5 ms
5,376 KB |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 1000000001 long long gethash(vector<int> t){ long long ret= 0; rep(i,t.size()){ long long x = t[i] + 110558; x <<= 38; x ^= t[i]; x ^= 13478729717847197; x += 553332; ret ^= x; }/* rep(i,t.size()){ cout<<t[i]<<','; } cout<<ret<<endl;*/ return ret; } int main(){ int N; cin>>N; vector<map<int,int>> mp(N); map<int,int> LCA; vector<long long> v(N,1); rep(i,N){ int m; cin>>m; rep(j,m){ int p,e; cin>>p>>e; mp[i][p] = e; LCA[p] = max(LCA[p],e); rep(k,e)v[i] *= p; } } map<int,int> pos; int cur = 0; vector<int> ps(LCA.size()); for(auto a:LCA){ pos[a.first] = cur; ps[cur] = a.first; cur++; } set<long long> S; vector<vector<int>> tt(N); rep(i,N){ vector<int> t; for(auto a:mp[i]){ if(a.second == LCA[a.first]){ t.push_back(pos[a.first]); } } sort(t.begin(),t.end()); tt[i] = t; if(S.count(gethash(t)))continue; rep(j,1<<t.size()){ vector<int> nt; rep(k,t.size()){ if((j>>k)&1)nt.push_back(t[k]); } S.insert(gethash(nt)); } } //cout<<'a'<<endl; vector<vector<int>> t(cur); rep(i,cur)t[i] = {i}; while(true){ if(t.size()==0){ cout<<-1<<endl; return 0; } vector<vector<int>> nt; rep(i,t.size()){ int last = t[i].back(); for(int j=last+1;j<cur;j++){ vector<int> temp = t[i]; temp.push_back(j); if(!S.count(gethash(temp))){ cout<<temp.size()<<endl; vector<vector<int>> ans(temp.size()); rep(i,N){ rep(j,temp.size()){ if(binary_search(tt[i].begin(),tt[i].end(),temp[j]))continue; ans[j].push_back(v[i]); break; } } rep(i,temp.size()){ cout<<ans[i].size(); rep(j,ans[i].size()){ cout<<' '; cout<<ans[i][j]; } cout<<endl; } return 0; } nt.push_back(temp); } } swap(t,nt); } return 0; }