結果
問題 | No.2771 Personal Space |
ユーザー | 👑 AngrySadEight |
提出日時 | 2024-05-27 18:41:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 273 ms / 2,000 ms |
コード長 | 1,619 bytes |
コンパイル時間 | 1,212 ms |
コンパイル使用メモリ | 93,708 KB |
実行使用メモリ | 8,952 KB |
最終ジャッジ日時 | 2024-12-20 20:34:54 |
合計ジャッジ時間 | 5,746 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 77 ms
8,952 KB |
testcase_02 | AC | 77 ms
8,952 KB |
testcase_03 | AC | 78 ms
8,952 KB |
testcase_04 | AC | 76 ms
8,828 KB |
testcase_05 | AC | 79 ms
8,828 KB |
testcase_06 | AC | 75 ms
8,820 KB |
testcase_07 | AC | 55 ms
5,248 KB |
testcase_08 | AC | 273 ms
5,248 KB |
testcase_09 | AC | 57 ms
5,248 KB |
testcase_10 | AC | 70 ms
5,452 KB |
testcase_11 | AC | 79 ms
7,988 KB |
testcase_12 | AC | 72 ms
8,348 KB |
testcase_13 | AC | 58 ms
5,248 KB |
testcase_14 | AC | 57 ms
5,248 KB |
testcase_15 | AC | 64 ms
5,248 KB |
testcase_16 | AC | 63 ms
5,248 KB |
testcase_17 | AC | 67 ms
5,248 KB |
testcase_18 | AC | 59 ms
5,248 KB |
testcase_19 | AC | 56 ms
5,248 KB |
testcase_20 | AC | 75 ms
8,044 KB |
testcase_21 | AC | 71 ms
7,844 KB |
testcase_22 | AC | 77 ms
7,812 KB |
testcase_23 | AC | 77 ms
8,640 KB |
testcase_24 | AC | 78 ms
8,216 KB |
ソースコード
#include <algorithm> #include <iostream> #include <queue> #include <set> #include <tuple> #include <vector> using namespace std; using ll = long long; using pll = pair<ll, ll>; int main() { ll T; cin >> T; while (T--) { ll N, M; cin >> N >> M; vector<ll> ans(N, -1); ans[M - 1] = 1; // 距離を優先度付きキューによって管理する priority_queue<tuple<ll, ll, ll>> pque; if (M != 1) { pque.push(tuple<ll, ll, ll>(M - 1, M - 2, 2 * (M - 1))); } if (M != N) { pque.push(tuple<ll, ll, ll>(N - M, -M, 2 * (N - M))); } for (ll i = 2; i <= N; i++) { ll half_ps, px, ps; tie(half_ps, px, ps) = pque.top(); pque.pop(); px *= -1; // cout << half_ps << " " << px << " " << ps << endl; ans[px + ps / 2 - 1] = i; if (px >= 1) { if (ps / 2 > 1) { // cout << px << " " << ps / 2 << endl; pque.push(tuple<ll, ll, ll>((ps / 2) / 2, -px, ps / 2)); } } if (px + ps <= N) { if ((ps + 1) / 2 > 1) { // cout << px + ps / 2 << " " << (ps + 1) / 2 << endl; pque.push(tuple<ll, ll, ll>(((ps + 1) / 2) / 2, -(px + ps / 2), (ps + 1) / 2)); } } // cout << endl; } for (ll i = 0; i < N; i++) { cout << ans[i] << " "; } cout << endl; } }