結果

問題 No.2967 Nana's Plus Permutation Game
ユーザー 沙耶花沙耶花
提出日時 2024-11-16 16:25:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 513 ms / 2,000 ms
コード長 1,131 bytes
コンパイル時間 4,455 ms
コンパイル使用メモリ 265,952 KB
実行使用メモリ 25,592 KB
平均クエリ数 4170.09
最終ジャッジ日時 2024-11-16 16:25:37
合計ジャッジ時間 27,420 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
24,824 KB
testcase_01 AC 208 ms
25,208 KB
testcase_02 AC 101 ms
25,208 KB
testcase_03 AC 125 ms
24,824 KB
testcase_04 AC 211 ms
24,808 KB
testcase_05 AC 170 ms
24,824 KB
testcase_06 AC 148 ms
25,208 KB
testcase_07 AC 194 ms
24,440 KB
testcase_08 AC 75 ms
24,440 KB
testcase_09 AC 193 ms
25,208 KB
testcase_10 AC 183 ms
24,812 KB
testcase_11 AC 74 ms
24,440 KB
testcase_12 AC 75 ms
24,952 KB
testcase_13 AC 164 ms
24,568 KB
testcase_14 AC 180 ms
24,824 KB
testcase_15 AC 127 ms
24,824 KB
testcase_16 AC 95 ms
25,208 KB
testcase_17 AC 202 ms
25,208 KB
testcase_18 AC 133 ms
24,824 KB
testcase_19 AC 79 ms
25,464 KB
testcase_20 AC 119 ms
24,568 KB
testcase_21 AC 292 ms
24,440 KB
testcase_22 AC 293 ms
25,592 KB
testcase_23 AC 251 ms
25,208 KB
testcase_24 AC 288 ms
24,824 KB
testcase_25 AC 284 ms
25,208 KB
testcase_26 AC 294 ms
24,568 KB
testcase_27 AC 236 ms
25,208 KB
testcase_28 AC 336 ms
24,812 KB
testcase_29 AC 314 ms
25,208 KB
testcase_30 AC 339 ms
25,208 KB
testcase_31 AC 234 ms
24,824 KB
testcase_32 AC 262 ms
25,208 KB
testcase_33 AC 255 ms
25,208 KB
testcase_34 AC 234 ms
24,836 KB
testcase_35 AC 306 ms
25,208 KB
testcase_36 AC 243 ms
24,440 KB
testcase_37 AC 337 ms
25,196 KB
testcase_38 AC 314 ms
24,824 KB
testcase_39 AC 302 ms
24,440 KB
testcase_40 AC 278 ms
24,824 KB
testcase_41 AC 420 ms
25,196 KB
testcase_42 AC 357 ms
25,436 KB
testcase_43 AC 373 ms
24,812 KB
testcase_44 AC 470 ms
24,556 KB
testcase_45 AC 417 ms
25,196 KB
testcase_46 AC 503 ms
25,196 KB
testcase_47 AC 462 ms
24,428 KB
testcase_48 AC 457 ms
25,196 KB
testcase_49 AC 380 ms
25,196 KB
testcase_50 AC 432 ms
24,940 KB
testcase_51 AC 422 ms
24,812 KB
testcase_52 AC 478 ms
25,196 KB
testcase_53 AC 371 ms
24,556 KB
testcase_54 AC 395 ms
25,196 KB
testcase_55 AC 351 ms
24,416 KB
testcase_56 AC 502 ms
25,580 KB
testcase_57 AC 494 ms
25,196 KB
testcase_58 AC 513 ms
24,812 KB
testcase_59 AC 488 ms
25,196 KB
testcase_60 AC 484 ms
24,812 KB
testcase_61 AC 62 ms
24,812 KB
testcase_62 AC 62 ms
24,812 KB
testcase_63 AC 62 ms
25,196 KB
testcase_64 AC 68 ms
24,812 KB
testcase_65 AC 62 ms
24,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL

int query(int i,int j){
	cout<<1<<' '<<i<<' '<<j<<endl;
	int res;
	cin>>res;
	return res;
}

int main(){
	
	int N;
	cin>>N;
	
	scc_graph G(N);
	vector<vector<int>> E(N);
	rep(i,N){
		int res = query(i+1,i+1);
		if(res!=-1){
			G.add_edge(i,res-1);
			E[i].push_back(res-1);
		}
	}
	auto s = G.scc();
	vector<int> pos(N);
	rep(i,N)pos[s[i][0]] = i;
	vector<int> dp(N,1);
	for(int i=N-1;i>=0;i--){
		int ma = 0;
		int v = s[i][0];
		rep(j,E[v].size()){
			int u = E[v][j];
			ma = max(ma,dp[pos[u]]);
		}
		dp[i] = ma+1;
	}
	int ii = 0;
	rep(i,N){
		if(dp[i]>dp[ii])ii = i;
	}
	int v = s[ii][0];
	rep(i,N){
		if(v==i)continue;
		int res = query(v+1,i+1);
		if(res!=-1){
			G.add_edge(v,res-1);
			G.add_edge(i,res-1);
		}
		G.add_edge(v,i);
	}
	s = G.scc();
	vector<int> ans(N);
	rep(i,N)ans[s[i][0]] = i;
	cout<<2;
	rep(i,N){
		cout<<' '<<ans[i]+1;
	}
	cout<<endl;
	
	return 0;
}
0