結果

問題 No.2771 Personal Space
ユーザー MayimgMayimg
提出日時 2024-06-02 15:34:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 1,355 bytes
コンパイル時間 3,235 ms
コンパイル使用メモリ 275,016 KB
実行使用メモリ 8,692 KB
最終ジャッジ日時 2024-06-02 15:34:17
合計ジャッジ時間 10,267 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 83 ms
8,560 KB
testcase_02 AC 82 ms
8,692 KB
testcase_03 AC 81 ms
8,560 KB
testcase_04 AC 83 ms
8,560 KB
testcase_05 AC 89 ms
8,692 KB
testcase_06 AC 83 ms
8,568 KB
testcase_07 AC 54 ms
5,376 KB
testcase_08 AC 46 ms
5,376 KB
testcase_09 AC 58 ms
5,376 KB
testcase_10 AC 66 ms
5,376 KB
testcase_11 AC 74 ms
6,228 KB
testcase_12 AC 68 ms
6,272 KB
testcase_13 AC 47 ms
5,376 KB
testcase_14 AC 57 ms
5,376 KB
testcase_15 AC 62 ms
5,376 KB
testcase_16 AC 66 ms
5,376 KB
testcase_17 AC 61 ms
5,376 KB
testcase_18 AC 56 ms
5,376 KB
testcase_19 AC 55 ms
5,376 KB
testcase_20 AC 74 ms
6,192 KB
testcase_21 AC 74 ms
6,156 KB
testcase_22 AC 71 ms
6,008 KB
testcase_23 AC 75 ms
8,472 KB
testcase_24 AC 70 ms
6,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize "O3,omit-frame-pointer,inline"
#pragma GCC push_options
#pragma GCC optimize ("unroll-loops")
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;

struct Segment {
  int l, r;
  Segment(int l, int r) : l(l), r(r) {}
  bool operator < (const Segment &s) const {
    int len = (r - l) % 2 == 1 ? (r - l - 1) / 2 : (r - l) / 2;
    int len_s = (s.r - s.l) % 2 == 1 ? (s.r - s.l - 1) / 2 : (s.r - s.l) / 2;
    if (len != len_s) return len < len_s;
    return l > s.l;
  }
};

signed main () {
  std::ios::sync_with_stdio(false); std::cin.tie(0);
  
  int t;
  cin >> t;
  while (t--) {
    // cerr << "t = " << t << endl;
    int n, m;
    cin >> n >> m;
    priority_queue<Segment> pq;
    vector<int> ans(n + 1);
    ans[m] = 1;
    pq.emplace(-m + 2, m);
    pq.emplace(m, n + n - m);
    for (int i = 2; i <= n; i++) {
      auto [l, r] = pq.top();
      pq.pop();
      int mid = (l + r) / 2;
      while (mid < 1 || mid > n || ans[mid]) {
        l = pq.top().l;
        r = pq.top().r;
        pq.pop();
        mid = (l + r) / 2;
      }
      // cerr << "i = " << i << " l = " << l << " r = " << r << " mid = " << mid << endl;
      ans[mid] = i;
      pq.emplace(l, mid);
      pq.emplace(mid, r);
    }
    for (int i = 1; i <= n; i++) {
      cout << ans[i] << " \n"[i == n];
    }
  }

  return 0;  
}


0