結果

問題 No.1711 Divide LCM
ユーザー chocoruskchocorusk
提出日時 2021-08-14 02:19:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 859 ms / 4,000 ms
コード長 3,237 bytes
コンパイル時間 3,628 ms
コンパイル使用メモリ 201,072 KB
実行使用メモリ 47,304 KB
最終ジャッジ日時 2024-09-17 17:03:00
合計ジャッジ時間 13,477 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,888 KB
testcase_01 AC 4 ms
6,016 KB
testcase_02 AC 5 ms
5,760 KB
testcase_03 AC 5 ms
6,144 KB
testcase_04 AC 10 ms
6,272 KB
testcase_05 AC 31 ms
6,912 KB
testcase_06 AC 13 ms
6,400 KB
testcase_07 AC 25 ms
6,656 KB
testcase_08 AC 13 ms
6,400 KB
testcase_09 AC 60 ms
7,296 KB
testcase_10 AC 15 ms
6,400 KB
testcase_11 AC 80 ms
7,552 KB
testcase_12 AC 17 ms
6,272 KB
testcase_13 AC 4 ms
5,888 KB
testcase_14 AC 7 ms
6,016 KB
testcase_15 AC 9 ms
6,400 KB
testcase_16 AC 5 ms
6,016 KB
testcase_17 AC 7 ms
6,016 KB
testcase_18 AC 122 ms
18,364 KB
testcase_19 AC 123 ms
18,360 KB
testcase_20 AC 122 ms
18,108 KB
testcase_21 AC 161 ms
15,484 KB
testcase_22 AC 859 ms
30,572 KB
testcase_23 AC 798 ms
47,304 KB
testcase_24 AC 137 ms
11,736 KB
testcase_25 AC 137 ms
11,740 KB
testcase_26 AC 134 ms
11,228 KB
testcase_27 AC 136 ms
11,696 KB
testcase_28 AC 132 ms
11,288 KB
testcase_29 AC 6 ms
6,144 KB
testcase_30 AC 146 ms
14,556 KB
testcase_31 AC 6 ms
6,016 KB
testcase_32 AC 156 ms
14,584 KB
testcase_33 AC 155 ms
14,572 KB
testcase_34 AC 12 ms
6,144 KB
testcase_35 AC 156 ms
11,888 KB
testcase_36 AC 169 ms
12,208 KB
testcase_37 AC 170 ms
12,208 KB
testcase_38 AC 125 ms
20,104 KB
testcase_39 AC 154 ms
15,984 KB
testcase_40 AC 6 ms
5,760 KB
testcase_41 AC 6 ms
6,016 KB
testcase_42 AC 6 ms
6,016 KB
testcase_43 AC 6 ms
6,016 KB
testcase_44 AC 6 ms
5,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:129:23: warning: narrowing conversion of 'x1' from 'll' {aka 'long long int'} to 'int' [-Wnarrowing]
  129 |             que.push({x1, {c+1, j}});
      |                       ^~

ソースコード

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()
{
    // clock_t start = clock();
    int n;
    cin>>n;
    vector<int> w;
    unordered_map<int, int> mp;
    for(int i=0; i<n; i++){
        int m; cin>>m;
        a[i]=1;
        for(int j=0; j<m; j++){
            int p, e;
            cin>>p>>e;
            for(int j=0; j<e; j++) a[i]*=p;
            f[i].push_back({p, e});
            mx[p]=max(mx[p], e);
        }
    }
    // clock_t end = clock();
    // cout<<(double)(end-start)/CLOCKS_PER_SEC<<endl;
    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]++;
        }
    }
    // end = clock();
    // cout<<(double)(end-start)/CLOCKS_PER_SEC<<endl;
    queue<pair<int, pair<int, int>>> que;
    for(int i=0; i<w.size(); i++){
        que.push({w[i], {1, i}});
    }
    auto ans=[&](ll x, int c){
        cout<<c<<endl;
        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;
                }
            }
            cout<<v.size();
            for(auto i:v){
                cout<<" "<<a[i];
            }
            cout<<endl;
        }
        // end = clock();
        // cout<<(double)(end-start)/CLOCKS_PER_SEC<<endl;
    };
    // cout<<mp.size()<<endl;
    while(!que.empty()){
        auto r=que.front(); que.pop();
        ll x=r.first;
        int c=r.second.first, i=r.second.second;
        for(int j=i+1; j<w.size(); j++){
            ll x1=x*w[j];
            if(mp.find(x1)==mp.end()){
                ans(x1, c+1);
                return 0;
            }
            que.push({x1, {c+1, j}});
        }
    }
    return 0;
}
0