結果
問題 |
No.2496 LCM between Permutations
|
ユーザー |
|
提出日時 | 2023-10-06 23:14:06 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 787 bytes |
コンパイル時間 | 1,894 ms |
コンパイル使用メモリ | 196,020 KB |
最終ジャッジ日時 | 2025-02-17 05:33:52 |
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | TLE * 1 |
other | -- * 28 |
ソースコード
#include <bits/stdc++.h> using namespace std; void f(int i, int j){ cout << "! " << i << " " << j << endl; } int main() { int N; cin >> N; vector<int> _A(N); int g = 0; for (int i = 0; i < N; i++){ f(i + 1, 2); int X; cin >> X; g = gcd(g, X); _A[i] = X; } int a = -1; for (int i = 0; i < N; i++){ _A[i] /= g; if (_A[i] == 1){ a = i + 1; } } vector<int> A(N), B(N); int b = -1; for (int i = 0; i < N; i++){ f(a, i + 1); int X; cin >> X; B[i] = X; if (X == 1){ b = i + 1; } } for (int i = 0; i < N; i++){ f(i + 1, b); int X; cin >> X; A[i] = X; } cout << "! "; for (int i = 0; i < N; i++){ cout << A[i]; cout << ' '; } for (int i = 0; i < N; i++){ cout << B[i]; if (i + 1 < N){ cout << ' '; } } cout << endl; }