結果

問題 No.2967 Nana's Plus Permutation Game
ユーザー kmjpkmjp
提出日時 2024-11-19 00:29:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 1,298 bytes
コンパイル時間 2,398 ms
コンパイル使用メモリ 200,972 KB
実行使用メモリ 25,592 KB
平均クエリ数 4170.09
最終ジャッジ日時 2024-11-19 00:30:17
合計ジャッジ時間 24,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
24,952 KB
testcase_01 AC 186 ms
25,208 KB
testcase_02 AC 103 ms
25,208 KB
testcase_03 AC 132 ms
24,824 KB
testcase_04 AC 201 ms
24,952 KB
testcase_05 AC 182 ms
24,952 KB
testcase_06 AC 155 ms
25,208 KB
testcase_07 AC 205 ms
25,208 KB
testcase_08 AC 78 ms
25,208 KB
testcase_09 AC 207 ms
24,568 KB
testcase_10 AC 181 ms
24,824 KB
testcase_11 AC 78 ms
24,952 KB
testcase_12 AC 79 ms
25,080 KB
testcase_13 AC 175 ms
24,568 KB
testcase_14 AC 187 ms
24,952 KB
testcase_15 AC 143 ms
25,208 KB
testcase_16 AC 97 ms
24,952 KB
testcase_17 AC 205 ms
25,208 KB
testcase_18 AC 143 ms
24,824 KB
testcase_19 AC 86 ms
24,952 KB
testcase_20 AC 129 ms
25,336 KB
testcase_21 AC 298 ms
24,952 KB
testcase_22 AC 298 ms
24,812 KB
testcase_23 AC 261 ms
24,952 KB
testcase_24 AC 320 ms
25,336 KB
testcase_25 AC 291 ms
25,448 KB
testcase_26 AC 309 ms
24,568 KB
testcase_27 AC 244 ms
25,208 KB
testcase_28 AC 329 ms
24,824 KB
testcase_29 AC 323 ms
25,208 KB
testcase_30 AC 366 ms
25,124 KB
testcase_31 AC 248 ms
24,952 KB
testcase_32 AC 266 ms
25,208 KB
testcase_33 AC 262 ms
24,824 KB
testcase_34 AC 241 ms
25,208 KB
testcase_35 AC 323 ms
25,208 KB
testcase_36 AC 276 ms
24,952 KB
testcase_37 AC 341 ms
24,568 KB
testcase_38 AC 312 ms
25,208 KB
testcase_39 AC 303 ms
25,208 KB
testcase_40 AC 291 ms
25,592 KB
testcase_41 AC 459 ms
24,556 KB
testcase_42 AC 368 ms
24,556 KB
testcase_43 AC 380 ms
25,324 KB
testcase_44 AC 502 ms
24,940 KB
testcase_45 AC 425 ms
24,812 KB
testcase_46 AC 472 ms
24,940 KB
testcase_47 AC 503 ms
25,580 KB
testcase_48 AC 475 ms
24,940 KB
testcase_49 AC 398 ms
24,812 KB
testcase_50 AC 441 ms
24,940 KB
testcase_51 AC 409 ms
24,556 KB
testcase_52 AC 511 ms
24,812 KB
testcase_53 AC 377 ms
24,812 KB
testcase_54 AC 382 ms
25,196 KB
testcase_55 AC 366 ms
25,196 KB
testcase_56 AC 491 ms
25,196 KB
testcase_57 AC 530 ms
25,184 KB
testcase_58 AC 493 ms
24,556 KB
testcase_59 AC 486 ms
25,196 KB
testcase_60 AC 499 ms
25,196 KB
testcase_61 AC 72 ms
24,812 KB
testcase_62 AC 70 ms
24,556 KB
testcase_63 AC 71 ms
24,556 KB
testcase_64 AC 69 ms
25,196 KB
testcase_65 AC 69 ms
24,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N;
int ask(int a,int b) {
	cout<<1<<" "<<a+1<<" "<<b+1<<endl;
	cin>>a;
	if(a>0) a--;
	return a;
}

int nex[5050];
int P[5050];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N) nex[i]=ask(i,i);
	
	int d=-1,f=1;
	FOR(i,N) {
		int cur=i;
		int step=0;
		while(cur!=-1) {
			step++;
			cur=nex[cur];
		}
		if(step>d) {
			d=step;
			f=i;
		}
	}
	P[f]=1;
	int pre=f;
	for(i=2;i<=N;i++) {
		x=ask(f,pre);
		P[x]=i;
		pre=x;
	}
	cout<<2;
	FOR(i,N) cout<<" "<<P[i];
	cout<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0