結果
問題 | No.2771 Personal Space |
ユーザー | t98slider |
提出日時 | 2024-06-01 20:57:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 157 ms / 2,000 ms |
コード長 | 1,966 bytes |
コンパイル時間 | 4,727 ms |
コンパイル使用メモリ | 266,732 KB |
実行使用メモリ | 36,032 KB |
最終ジャッジ日時 | 2024-12-22 10:49:53 |
合計ジャッジ時間 | 12,690 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 150 ms
35,868 KB |
testcase_02 | AC | 148 ms
35,968 KB |
testcase_03 | AC | 146 ms
35,972 KB |
testcase_04 | AC | 148 ms
36,012 KB |
testcase_05 | AC | 146 ms
36,032 KB |
testcase_06 | AC | 151 ms
35,976 KB |
testcase_07 | AC | 85 ms
6,816 KB |
testcase_08 | AC | 58 ms
6,816 KB |
testcase_09 | AC | 86 ms
6,816 KB |
testcase_10 | AC | 130 ms
11,524 KB |
testcase_11 | AC | 141 ms
20,764 KB |
testcase_12 | AC | 135 ms
22,016 KB |
testcase_13 | AC | 67 ms
6,820 KB |
testcase_14 | AC | 84 ms
6,816 KB |
testcase_15 | AC | 104 ms
6,820 KB |
testcase_16 | AC | 106 ms
6,820 KB |
testcase_17 | AC | 112 ms
6,816 KB |
testcase_18 | AC | 84 ms
6,816 KB |
testcase_19 | AC | 77 ms
6,820 KB |
testcase_20 | AC | 142 ms
20,596 KB |
testcase_21 | AC | 137 ms
20,280 KB |
testcase_22 | AC | 144 ms
20,164 KB |
testcase_23 | AC | 157 ms
35,280 KB |
testcase_24 | AC | 144 ms
21,536 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using ll = long long; template<class T> istream& operator >> (istream& is, vector<T>& vec) { for(T& x : vec) is >> x; return is; } template<class T> ostream& operator << (ostream& os, const vector<T>& vec) { if(vec.empty()) return os; os << vec[0]; for(auto it = vec.begin(); ++it != vec.end(); ) os << ' ' << *it; return os; } using S = array<pair<int,int>, 3>; pair<int,int> comp(pair<int,int> lhs, pair<int,int> rhs){ if(lhs.first == rhs.first) { return lhs.second < rhs.second ? lhs : rhs; } return lhs.first > rhs.first ? lhs : rhs; } S op(S lhs, S rhs){ if(lhs[0].first == -1) return rhs; if(rhs[0].first == -1) return lhs; S tmp; tmp[0] = comp(lhs[0], rhs[0]); tmp[1] = lhs[1]; tmp[2] = rhs[2]; int d = abs(rhs[1].second - lhs[2].second) / 2; tmp[0] = comp(tmp[0], make_pair(d, lhs[2].second + d)); return tmp; } S e(){ pair<int,int> tmp = {-1, -1}; return S({tmp, tmp, tmp}); } int main(){ ios::sync_with_stdio(false); cin.tie(0); int T; cin >> T; while(T--){ int n, m; cin >> n >> m; m--; vector<int> ans(n); ans[m] = 1; atcoder::segtree<S, op, e> seg(n); pair<int,int> tmp; tmp = make_pair(0, m); seg.set(m, S({tmp, tmp, tmp})); for(int i = 2; i <= n; i++){ auto pa = seg.all_prod(); if(seg.get(0)[0].first != 0){ int d = pa[1].second; pa[0] = comp(pa[0], make_pair(d, 0)); } if(seg.get(n - 1)[0].first != 0){ int d = (n - 1 - pa[2].second); pa[0] = comp(pa[0], make_pair(d, n - 1)); } int c = pa[0].second; ans[c] = i; tmp = make_pair(0, c); seg.set(c, S({tmp, tmp, tmp})); } cout << ans << '\n'; } }