結果

問題 No.2967 Nana's Plus Permutation Game
ユーザー t98slidert98slider
提出日時 2024-11-16 20:32:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 553 ms / 2,000 ms
コード長 958 bytes
コンパイル時間 2,547 ms
コンパイル使用メモリ 203,404 KB
実行使用メモリ 25,592 KB
平均クエリ数 4170.09
最終ジャッジ日時 2024-11-16 20:33:27
合計ジャッジ時間 26,105 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
24,824 KB
testcase_01 AC 197 ms
24,824 KB
testcase_02 AC 109 ms
24,568 KB
testcase_03 AC 136 ms
25,208 KB
testcase_04 AC 195 ms
24,952 KB
testcase_05 AC 165 ms
24,568 KB
testcase_06 AC 142 ms
24,940 KB
testcase_07 AC 211 ms
24,440 KB
testcase_08 AC 78 ms
24,440 KB
testcase_09 AC 184 ms
25,208 KB
testcase_10 AC 163 ms
25,208 KB
testcase_11 AC 70 ms
24,824 KB
testcase_12 AC 70 ms
24,952 KB
testcase_13 AC 157 ms
25,464 KB
testcase_14 AC 192 ms
24,824 KB
testcase_15 AC 122 ms
24,568 KB
testcase_16 AC 102 ms
25,208 KB
testcase_17 AC 213 ms
24,824 KB
testcase_18 AC 149 ms
25,064 KB
testcase_19 AC 84 ms
25,208 KB
testcase_20 AC 133 ms
24,680 KB
testcase_21 AC 310 ms
24,440 KB
testcase_22 AC 306 ms
24,952 KB
testcase_23 AC 223 ms
25,208 KB
testcase_24 AC 287 ms
24,824 KB
testcase_25 AC 271 ms
24,824 KB
testcase_26 AC 319 ms
24,568 KB
testcase_27 AC 258 ms
25,180 KB
testcase_28 AC 340 ms
24,824 KB
testcase_29 AC 312 ms
24,568 KB
testcase_30 AC 348 ms
24,824 KB
testcase_31 AC 264 ms
24,824 KB
testcase_32 AC 275 ms
24,568 KB
testcase_33 AC 284 ms
24,824 KB
testcase_34 AC 247 ms
25,592 KB
testcase_35 AC 288 ms
24,824 KB
testcase_36 AC 249 ms
24,952 KB
testcase_37 AC 302 ms
24,568 KB
testcase_38 AC 279 ms
25,464 KB
testcase_39 AC 281 ms
24,824 KB
testcase_40 AC 300 ms
25,592 KB
testcase_41 AC 426 ms
25,196 KB
testcase_42 AC 338 ms
24,812 KB
testcase_43 AC 389 ms
24,812 KB
testcase_44 AC 553 ms
24,812 KB
testcase_45 AC 480 ms
25,580 KB
testcase_46 AC 446 ms
25,196 KB
testcase_47 AC 437 ms
24,812 KB
testcase_48 AC 457 ms
24,812 KB
testcase_49 AC 360 ms
25,580 KB
testcase_50 AC 400 ms
24,812 KB
testcase_51 AC 387 ms
24,812 KB
testcase_52 AC 439 ms
24,556 KB
testcase_53 AC 327 ms
24,428 KB
testcase_54 AC 352 ms
25,324 KB
testcase_55 AC 330 ms
25,196 KB
testcase_56 AC 429 ms
25,196 KB
testcase_57 AC 460 ms
24,940 KB
testcase_58 AC 459 ms
25,580 KB
testcase_59 AC 447 ms
24,812 KB
testcase_60 AC 476 ms
25,580 KB
testcase_61 AC 60 ms
25,580 KB
testcase_62 AC 61 ms
24,556 KB
testcase_63 AC 61 ms
24,812 KB
testcase_64 AC 65 ms
24,940 KB
testcase_65 AC 61 ms
25,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    auto ask = [&](int u, int v){
        int res;
        cout << "1 " << u + 1 << " " << v + 1 << endl;
        cin >> res;
        return res == -1 ? -1 : res - 1;
    };
    vector<int> a(n), ans(n, -1);
    for(int i = 0; i < n; i++) a[i] = ask(i, i);
    vector<int> dp(n);
    auto rec = [&](auto rec, int v) -> int {
        if (dp[v] != 0) return dp[v];
        return dp[v] = 1 + (a[v] == -1 ? 0 : rec(rec, a[v]));
    };
    int p = -1, mx = -1;
    for(int i = 0; i < n; i++){
        rec(rec, i);
        if(dp[i] > mx){
            mx = dp[i];
            p = i;
        }
    }
    ans[p] = 1;
    for(int i = 2, v = p; i <= n; i++){
        v = ask(v, p);
        ans[v] = i;
    }
    cout << "2";
    for(int i = 0; i < n; i++){
        cout << ' ' << ans[i];
    }
    cout << endl;
}
0