結果

問題 No.2967 Nana's Plus Permutation Game
ユーザー KudeKude
提出日時 2024-11-16 17:44:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 908 ms / 2,000 ms
コード長 1,747 bytes
コンパイル時間 3,132 ms
コンパイル使用メモリ 275,520 KB
実行使用メモリ 25,464 KB
平均クエリ数 2638.47
最終ジャッジ日時 2024-11-16 17:44:49
合計ジャッジ時間 29,316 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
25,208 KB
testcase_01 AC 138 ms
25,208 KB
testcase_02 AC 84 ms
25,208 KB
testcase_03 AC 105 ms
24,824 KB
testcase_04 AC 189 ms
24,824 KB
testcase_05 AC 147 ms
25,196 KB
testcase_06 AC 112 ms
25,208 KB
testcase_07 AC 177 ms
25,208 KB
testcase_08 AC 67 ms
24,568 KB
testcase_09 AC 141 ms
24,824 KB
testcase_10 AC 123 ms
24,824 KB
testcase_11 AC 66 ms
24,824 KB
testcase_12 AC 70 ms
25,208 KB
testcase_13 AC 119 ms
25,208 KB
testcase_14 AC 164 ms
25,464 KB
testcase_15 AC 108 ms
24,428 KB
testcase_16 AC 82 ms
25,208 KB
testcase_17 AC 175 ms
24,824 KB
testcase_18 AC 107 ms
24,568 KB
testcase_19 AC 69 ms
24,568 KB
testcase_20 AC 100 ms
25,208 KB
testcase_21 AC 331 ms
24,440 KB
testcase_22 AC 296 ms
25,208 KB
testcase_23 AC 292 ms
24,568 KB
testcase_24 AC 308 ms
24,440 KB
testcase_25 AC 330 ms
25,208 KB
testcase_26 AC 302 ms
24,824 KB
testcase_27 AC 214 ms
24,568 KB
testcase_28 AC 379 ms
25,208 KB
testcase_29 AC 363 ms
25,208 KB
testcase_30 AC 363 ms
25,208 KB
testcase_31 AC 244 ms
25,208 KB
testcase_32 AC 261 ms
24,824 KB
testcase_33 AC 253 ms
25,208 KB
testcase_34 AC 241 ms
24,440 KB
testcase_35 AC 328 ms
24,824 KB
testcase_36 AC 233 ms
25,208 KB
testcase_37 AC 470 ms
25,208 KB
testcase_38 AC 328 ms
24,824 KB
testcase_39 AC 342 ms
25,208 KB
testcase_40 AC 304 ms
25,208 KB
testcase_41 AC 706 ms
24,808 KB
testcase_42 AC 477 ms
25,452 KB
testcase_43 AC 512 ms
24,556 KB
testcase_44 AC 735 ms
25,196 KB
testcase_45 AC 638 ms
25,184 KB
testcase_46 AC 706 ms
25,196 KB
testcase_47 AC 842 ms
24,812 KB
testcase_48 AC 813 ms
24,812 KB
testcase_49 AC 600 ms
24,812 KB
testcase_50 AC 656 ms
25,196 KB
testcase_51 AC 581 ms
24,812 KB
testcase_52 AC 718 ms
25,196 KB
testcase_53 AC 482 ms
24,812 KB
testcase_54 AC 458 ms
24,556 KB
testcase_55 AC 441 ms
25,196 KB
testcase_56 AC 815 ms
24,812 KB
testcase_57 AC 858 ms
24,812 KB
testcase_58 AC 908 ms
24,812 KB
testcase_59 AC 860 ms
24,812 KB
testcase_60 AC 824 ms
25,196 KB
testcase_61 AC 61 ms
24,556 KB
testcase_62 AC 61 ms
24,812 KB
testcase_63 AC 64 ms
24,812 KB
testcase_64 AC 60 ms
24,928 KB
testcase_65 AC 60 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

int ask(int i, int j) {
  cout << 1 << ' ' << i + 1 << ' ' << j + 1 << endl;
  int res;
  cin >> res;
  if (res != -1) res--;
  return res;
}

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  dsu uf(n);
  VI idx(n, 1);
  rep(i, n) {
    while (true) {
      if (idx[i] != 1) break;
      vector<int> seen(n + 1, -1);
      rep(j, n) if (uf.same(i, j)) seen[idx[j]] = j;
      bool end = true;
      for (int c1 = 2; c1 <= n; c1++) {
        if (seen[c1] == -1) {
          int res = ask(i, seen[c1-1]);
          if (res == -1) break;
          int c2 = idx[res];
          int g = gcd(c1, c2);
          int m1 = c2 / g, m2 = c1 / g;
          rep(j, n) {
            if (uf.same(i, j)) idx[j] *= m1;
            else if (uf.same(res, j)) idx[j] *= m2;
          }
          uf.merge(i, res);
          end = false;
          break;
        }
      }
      if (end) break;
    }
  }
  assert(uf.size(0) == n);
  cout << 2;
  for (int i : idx) cout << ' ' << i;
  cout << endl;
}
0