結果
問題 | No.2567 A_1 > A_2 > ... > A_N |
ユーザー | gabriel55_ |
提出日時 | 2023-12-02 17:41:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 42 ms / 2,000 ms |
コード長 | 2,508 bytes |
コンパイル時間 | 2,021 ms |
コンパイル使用メモリ | 203,504 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-26 21:17:01 |
合計ジャッジ時間 | 4,077 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 14 ms
5,376 KB |
testcase_02 | AC | 15 ms
5,376 KB |
testcase_03 | AC | 14 ms
5,376 KB |
testcase_04 | AC | 18 ms
5,376 KB |
testcase_05 | AC | 18 ms
5,376 KB |
testcase_06 | AC | 42 ms
5,376 KB |
testcase_07 | AC | 42 ms
5,376 KB |
testcase_08 | AC | 42 ms
5,376 KB |
testcase_09 | AC | 42 ms
5,376 KB |
testcase_10 | AC | 42 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
ソースコード
#if !__INCLUDE_LEVEL__ #include __FILE__ void solve() { ll n, x; cin >> n >> x; vector<ll> a(n+1); bool ok = true; m_99(i,1,n) { a[i] = i; x -= a[i]; if(x < 0) ok = false; } a[n] = x; if(x < 0 || a[n-1] >= a[n]) ok = false; if(!ok) { cout << -1 << '\n'; return; } reverse(a.begin(), a.end()); if(n == 1) { cout << a[0] << '\n'; return; } auto check = [&](ll m) -> bool { double X = m; if(X*(n-1) > 4e18) return false; return true; }; { ll ook = 0, ng = 1e18; while(abs(ook - ng) > 1) { ll m = (ook + ng) / 2; if(check(m) && a[0]-(n-1)*m > a[1]+m) ook = m; else ng = m; } a[0] -= ook * (n-1); m_99(i,1,n) a[i] += ook; } m_99(i,1,n) { if(a[0]-1 > a[i]+1 && a[0]-1 > a[1]) { a[0]--; a[i]++; } else break; } rep(i,n) cout << a[i] << " \n"[i == n-1]; } int main() { ll t; cin >> t; while(t--) { solve(); } } /*--------------------------------------------------------------------------------------------------- ○______ || | || ● | || | || ̄ ̄ ̄ ̄ ̄ || 君が代は ∧__,,∧|| 千代に八千代に ( `・ω・|| さざれ石の巌となりて ヽ つ0 こけのむすまで し―-J ---------------------------------------------------------------------------------------------------*/ #else #include <bits/stdc++.h> using namespace std; // #include <atcoder/all> // using namespace atcoder; using ll = long long; using ull = unsigned long long; using ldb = long double; using P = pair<ll, ll>; #define fi first #define se second #define m_99(i,a,b) for (ll i = a, i##_range = (b); i < i##_range; i++) #define REP(i,a,b) m_99(i,a,b) #define rep(i,a) m_99(i,0,a) template <class T> bool chmin(T& a, const T& b) { return a > b ? a = b, true : false; } template <class T> bool chmax(T& a, const T& b) { return a < b ? a = b, true : false; } #ifdef _DEBUG #include <debug_print.hpp> #define debug(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__) #else #define debug(...) (static_cast<void>(0)) #endif struct initialise { initialise() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; }__INI__; const ll inf = 1LL << 60; const ll dx[4] = {-1, 1, 0, 0}, dy[4] = {0, 0, -1, 1}; #endif