結果
| 問題 |
No.2124 Guess the Permutation
|
| コンテスト | |
| ユーザー |
tnakao0123
|
| 提出日時 | 2022-11-21 18:38:27 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 55 ms / 2,000 ms |
| コード長 | 746 bytes |
| コンパイル時間 | 336 ms |
| コンパイル使用メモリ | 41,412 KB |
| 実行使用メモリ | 25,336 KB |
| 平均クエリ数 | 374.60 |
| 最終ジャッジ日時 | 2024-09-22 09:21:51 |
| 合計ジャッジ時間 | 1,580 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 9 |
ソースコード
/* -*- coding: utf-8 -*-
*
* 2124.cc: No.2124 Guess the Permutation - yukicoder
*/
#include<cstdio>
#include<algorithm>
using namespace std;
/* constant */
const int MAX_N = 1000;
/* typedef */
/* global variables */
int ps[MAX_N];
/* subroutines */
int query(int l, int r) {
printf("? %d %d\n", l + 1, r); fflush(stdout);
int s;
scanf("%d", &s);
return s;
}
/* main */
int main() {
int n;
scanf("%d", &n);
ps[0] = n * (n + 1) / 2 - query(1, n);
int sum = ps[0];
for (int i = 1; i + 1 < n; i++) {
ps[i] = query(0, i + 1) - sum;
sum += ps[i];
}
ps[n - 1] = n * (n + 1) / 2 - sum;
putchar('!');
for (int i = 0; i < n; i++) printf(" %d", ps[i]);
putchar('\n'); fflush(stdout);
return 0;
}
tnakao0123