結果
| 問題 |
No.8109 GCD between Permutations
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-01 22:48:46 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
QLE
|
| 実行時間 | - |
| コード長 | 545 bytes |
| コンパイル時間 | 606 ms |
| コンパイル使用メモリ | 63,616 KB |
| 実行使用メモリ | 38,960 KB |
| 平均クエリ数 | 1286.62 |
| 最終ジャッジ日時 | 2024-09-30 22:40:27 |
| 合計ジャッジ時間 | 5,573 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | QLE * 1 |
| other | AC * 1 TLE * 1 QLE * 16 -- * 10 |
ソースコード
#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=0;
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=0;
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;
}