結果

問題 No.1711 Divide LCM
ユーザー SSRSSSRS
提出日時 2021-10-15 22:48:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,001 bytes
コンパイル時間 2,429 ms
コンパイル使用メモリ 188,672 KB
実行使用メモリ 87,964 KB
最終ジャッジ日時 2023-10-17 20:42:36
合計ジャッジ時間 35,536 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,696 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 3 ms
4,348 KB
testcase_04 AC 16 ms
4,348 KB
testcase_05 AC 97 ms
5,232 KB
testcase_06 AC 27 ms
4,348 KB
testcase_07 AC 71 ms
5,116 KB
testcase_08 AC 22 ms
4,488 KB
testcase_09 AC 179 ms
6,508 KB
testcase_10 AC 38 ms
4,348 KB
testcase_11 AC 299 ms
7,524 KB
testcase_12 AC 40 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 10 ms
4,348 KB
testcase_15 AC 16 ms
4,348 KB
testcase_16 AC 3 ms
4,348 KB
testcase_17 AC 10 ms
4,348 KB
testcase_18 AC 2,596 ms
19,512 KB
testcase_19 AC 2,591 ms
19,524 KB
testcase_20 AC 2,594 ms
19,520 KB
testcase_21 AC 312 ms
31,800 KB
testcase_22 TLE -
testcase_23 AC 3,492 ms
87,964 KB
testcase_24 AC 364 ms
18,400 KB
testcase_25 AC 355 ms
18,400 KB
testcase_26 AC 349 ms
18,440 KB
testcase_27 AC 326 ms
19,376 KB
testcase_28 AC 332 ms
18,576 KB
testcase_29 AC 8 ms
4,348 KB
testcase_30 AC 372 ms
23,708 KB
testcase_31 AC 7 ms
4,348 KB
testcase_32 AC 372 ms
29,688 KB
testcase_33 AC 270 ms
29,688 KB
testcase_34 AC 23 ms
4,348 KB
testcase_35 AC 514 ms
17,996 KB
testcase_36 AC 593 ms
18,976 KB
testcase_37 AC 597 ms
18,980 KB
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
void dfs(vector<int> &ans, bool &ok, int &cnt, vector<set<vector<int>>> &ng, vector<int> &curr, int sz, int p){
  if (p == cnt){
    if (curr.size() == sz){
      if (ng[sz].count(curr) == 0){
        ans = curr;
        ok = true;
      }
    }
  } else {
    dfs(ans, ok, cnt, ng, curr, sz, p + 1);
    if (ok){
      return;
    }
    if (curr.size() < sz){
      curr.push_back(p);
      dfs(ans, ok, cnt, ng, curr, sz, p + 1);
      curr.pop_back();
    }
  }
}
int main(){
  int N;
  cin >> N;
  vector<int> m(N);
  vector<vector<int>> p(N), e(N);
  for (int i = 0; i < N; i++){
    cin >> m[i];
    p[i] = vector<int>(m[i]);
    e[i] = vector<int>(m[i]);
    for (int j = 0; j < m[i]; j++){
      cin >> p[i][j] >> e[i][j];
    }
  }
  vector<int> P;
  for (int i = 0; i < N; i++){
    for (int j = 0; j < m[i]; j++){
      P.push_back(p[i][j]);
    }
  }
  sort(P.begin(), P.end());
  P.erase(unique(P.begin(), P.end()), P.end());
  int cnt = P.size();
  for (int i = 0; i < N; i++){
    for (int j = 0; j < m[i]; j++){
      p[i][j] = lower_bound(P.begin(), P.end(), p[i][j]) - P.begin();
    }
  }
  vector<int> mx(cnt, -1);
  for (int i = 0; i < N; i++){
    for (int j = 0; j < m[i]; j++){
      mx[p[i][j]] = max(mx[p[i][j]], e[i][j]);
    }
  }
  vector<vector<int>> s(N);
  for (int i = 0; i < N; i++){
    for (int j = 0; j < m[i]; j++){
      if (mx[p[i][j]] == e[i][j]){
        s[i].push_back(p[i][j]);
      }
    }
  }
  bool ok = true;
  for (int i = 0; i < N; i++){
    if (s[i].size() == cnt){
      ok = false;
    }
  }
  if (!ok){
    cout << -1 << endl;
  } else {
    vector<set<vector<int>>> ng(10);
    for (int i = 0; i < N; i++){
      int cnt2 = s[i].size();
      for (int j = 0; j < (1 << cnt2); j++){
        int sz = __builtin_popcount(j);
        vector<int> S2;
        for (int k = 0; k < cnt2; k++){
          if ((j >> k & 1) == 1){
            S2.push_back(s[i][k]);
          }
        }
        ng[sz].insert(S2);
      }
    }
    vector<int> ans;
    for (int i = 1; i <= 10; i++){
      vector<int> curr;
      bool ok2 = false;
      dfs(ans, ok2, cnt, ng, curr, i, 0);
      if (ok2){
        break;
      }
    }
    vector<int> A(N, 1);
    for (int i = 0; i < N; i++){
      for (int j = 0; j < m[i]; j++){
        for (int k = 0; k < e[i][j]; k++){
          A[i] *= P[p[i][j]];
        }
      }
    }
    int k = ans.size();
    vector<vector<int>> S(k);
    for (int i = 0; i < N; i++){
      for (int j = 0; j < k; j++){
        bool ok2 = true;
        int cnt2 = s[i].size();
        for (int l = 0; l < cnt2; l++){
          if (s[i][l] == ans[j]){
            ok2 = false;
          }
        }
        if (ok2){
          S[j].push_back(A[i]);
          break;
        }
      }
    }
    cout << k << endl;
    for (int i = 0; i < k; i++){
      int n = S[i].size();
      cout << n;
      for (int j = 0; j < n; j++){
        cout << ' ' << S[i][j];
      }
      cout << endl;
    }
  }
}
0