結果

問題 No.2771 Personal Space
ユーザー MayimgMayimg
提出日時 2024-06-02 15:34:06
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 1,355 bytes
コンパイル時間 4,044 ms
コンパイル使用メモリ 274,072 KB
実行使用メモリ 8,692 KB
最終ジャッジ日時 2024-12-23 10:15:09
合計ジャッジ時間 11,313 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 107 ms
8,564 KB
testcase_02 AC 105 ms
8,692 KB
testcase_03 AC 109 ms
8,688 KB
testcase_04 AC 107 ms
8,564 KB
testcase_05 AC 111 ms
8,564 KB
testcase_06 AC 104 ms
8,692 KB
testcase_07 AC 67 ms
5,248 KB
testcase_08 AC 58 ms
5,248 KB
testcase_09 AC 69 ms
5,248 KB
testcase_10 AC 82 ms
5,248 KB
testcase_11 AC 97 ms
6,228 KB
testcase_12 AC 86 ms
6,404 KB
testcase_13 AC 59 ms
5,248 KB
testcase_14 AC 71 ms
5,248 KB
testcase_15 AC 76 ms
5,248 KB
testcase_16 AC 78 ms
5,248 KB
testcase_17 AC 78 ms
5,248 KB
testcase_18 AC 73 ms
5,248 KB
testcase_19 AC 70 ms
5,248 KB
testcase_20 AC 95 ms
6,068 KB
testcase_21 AC 102 ms
6,032 KB
testcase_22 AC 92 ms
6,004 KB
testcase_23 AC 97 ms
8,596 KB
testcase_24 AC 92 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