結果

問題 No.1711 Divide LCM
ユーザー chocoruskchocorusk
提出日時 2021-09-12 23:22:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 742 ms / 4,000 ms
コード長 2,992 bytes
コンパイル時間 3,991 ms
コンパイル使用メモリ 200,340 KB
実行使用メモリ 48,484 KB
最終ジャッジ日時 2023-10-17 19:56:19
合計ジャッジ時間 13,440 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,348 KB
testcase_01 AC 4 ms
7,348 KB
testcase_02 AC 5 ms
7,184 KB
testcase_03 AC 5 ms
7,396 KB
testcase_04 AC 8 ms
7,568 KB
testcase_05 AC 22 ms
8,040 KB
testcase_06 AC 10 ms
7,564 KB
testcase_07 AC 18 ms
7,920 KB
testcase_08 AC 11 ms
7,680 KB
testcase_09 AC 44 ms
8,560 KB
testcase_10 AC 11 ms
7,580 KB
testcase_11 AC 55 ms
8,836 KB
testcase_12 AC 11 ms
7,584 KB
testcase_13 AC 5 ms
7,372 KB
testcase_14 AC 7 ms
7,476 KB
testcase_15 AC 8 ms
7,516 KB
testcase_16 AC 4 ms
7,372 KB
testcase_17 AC 7 ms
7,476 KB
testcase_18 AC 96 ms
19,356 KB
testcase_19 AC 94 ms
19,348 KB
testcase_20 AC 93 ms
19,356 KB
testcase_21 AC 132 ms
16,668 KB
testcase_22 AC 679 ms
31,652 KB
testcase_23 AC 742 ms
48,484 KB
testcase_24 AC 116 ms
12,928 KB
testcase_25 AC 114 ms
12,664 KB
testcase_26 AC 113 ms
12,400 KB
testcase_27 AC 115 ms
12,876 KB
testcase_28 AC 114 ms
12,588 KB
testcase_29 AC 5 ms
7,404 KB
testcase_30 AC 126 ms
15,620 KB
testcase_31 AC 5 ms
7,404 KB
testcase_32 AC 127 ms
15,424 KB
testcase_33 AC 127 ms
15,424 KB
testcase_34 AC 10 ms
7,580 KB
testcase_35 AC 126 ms
12,940 KB
testcase_36 AC 135 ms
13,408 KB
testcase_37 AC 135 ms
13,404 KB
testcase_38 AC 124 ms
23,744 KB
testcase_39 AC 133 ms
16,944 KB
testcase_40 AC 5 ms
7,244 KB
testcase_41 AC 5 ms
7,244 KB
testcase_42 AC 5 ms
7,252 KB
testcase_43 AC 5 ms
7,252 KB
testcase_44 AC 5 ms
7,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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();
        vector<int> vd{1};
        for(int k=0; k<m; k++){
            vector<int> vd1=vd, vd2=vd;
            for(auto &x:vd2) x*=f1[k];
            copy(vd2.begin(), vd2.end(), back_inserter(vd1));
            swap(vd1, vd);
        }
        for(auto x:vd) 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]);
            }
            printf("\n");
        }
    };
    while(!que.empty()){
        auto r=que.front(); que.pop();
        ll x=r.first;
        int i=r.second;
        for(int j=i+1; j<w.size(); j++){
            ll x1=x*w[j];
            if(mp.find(x1)==mp.end()){
                ans(x1);
                return 0;
            }
            que.push({x1, j});
        }
    }
    return 0;
}
0