結果
問題 | No.2771 Personal Space |
ユーザー | tnakao0123 |
提出日時 | 2024-06-15 23:13:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 71 ms / 2,000 ms |
コード長 | 1,262 bytes |
コンパイル時間 | 914 ms |
コンパイル使用メモリ | 59,324 KB |
実行使用メモリ | 5,984 KB |
最終ジャッジ日時 | 2024-06-15 23:13:08 |
合計ジャッジ時間 | 6,623 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 71 ms
5,856 KB |
testcase_02 | AC | 66 ms
5,984 KB |
testcase_03 | AC | 66 ms
5,852 KB |
testcase_04 | AC | 70 ms
5,848 KB |
testcase_05 | AC | 67 ms
5,732 KB |
testcase_06 | AC | 64 ms
5,788 KB |
testcase_07 | AC | 48 ms
5,376 KB |
testcase_08 | AC | 53 ms
5,376 KB |
testcase_09 | AC | 51 ms
5,376 KB |
testcase_10 | AC | 62 ms
5,376 KB |
testcase_11 | AC | 67 ms
5,436 KB |
testcase_12 | AC | 67 ms
5,484 KB |
testcase_13 | AC | 44 ms
5,376 KB |
testcase_14 | AC | 48 ms
5,376 KB |
testcase_15 | AC | 55 ms
5,376 KB |
testcase_16 | AC | 54 ms
5,376 KB |
testcase_17 | AC | 56 ms
5,376 KB |
testcase_18 | AC | 49 ms
5,376 KB |
testcase_19 | AC | 49 ms
5,376 KB |
testcase_20 | AC | 66 ms
5,376 KB |
testcase_21 | AC | 71 ms
5,376 KB |
testcase_22 | AC | 67 ms
5,376 KB |
testcase_23 | AC | 66 ms
5,636 KB |
testcase_24 | AC | 68 ms
5,420 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 2771.cc: No.2771 Personal Space - yukicoder */ #include<cstdio> #include<queue> #include<algorithm> using namespace std; /* constant */ const int MAX_N = 300000; /* typedef */ struct Range { int d, l, r; Range() {} Range(int _l, int _r): d((_r - _l + 1) / 2), l(_l), r(_r) {} bool operator<(const Range &e) const { return d < e.d || (d == e.d && l > e.l); } }; /* global variables */ int ps[MAX_N]; /* subroutines */ /* main */ int main() { int tn; scanf("%d", &tn); while (tn--) { int n, m; scanf("%d%d", &n, &m), m--; fill(ps, ps + n, -1); ps[m] = 0; int ld = m, rd = n - 1 - m; priority_queue<Range> q; for (int i = 1; i < n; i++) { Range e = (! q.empty()) ? q.top() : Range(-1, -1); if (ld >= max(e.d, rd)) { ps[0] = i; ld = 0; if (m > 1) q.push(Range(1, m)); } else if (e.d >= rd) { q.pop(); int x = e.l - 1 + e.d; ps[x] = i; if (e.l < x) q.push(Range(e.l, x)); if (x + 1 < e.r) q.push(Range(x + 1, e.r)); } else { ps[n - 1] = i; rd = 0; if (n - 1 > m + 1) q.push(Range(m + 1, n - 1)); } } for (int i = 0; i < n; i++) printf("%d%c", ps[i] + 1, (i + 1 < n) ? ' ' : '\n'); } return 0; }