結果

問題 No.8109 GCD between Permutations
ユーザー kotatsugame
提出日時 2024-04-01 22:50:26
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 63,488 KB
実行使用メモリ 25,604 KB
平均クエリ数 1.00
最終ジャッジ日時 2024-09-30 22:40:33
合計ジャッジ時間 2,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
using namespace std;
int A[1001],B[1001];
int ask(int i,int j)
{
	cout<<"? "<<i<<" "<<j<<endl;
	int X;cin>>X;
	return X;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int N;cin>>N;
	for(int i=1;i<=N;i++)
	{
		int mx=i;
		//for(int j=1;j<=N;j++)mx=max(mx,ask(i,j));
		A[i]=mx;
	}
	for(int j=1;j<=N;j++)
	{
		int mx=j;
		//for(int i=1;i<=N;i++)mx=max(mx,ask(i,j));
		B[j]=mx;
	}
	cout<<"!";
	for(int i=1;i<=N;i++)cout<<" "<<A[i];
	for(int i=1;i<=N;i++)cout<<" "<<B[i];
	cout<<endl;
	return 0;
}
0