結果
問題 | No.1619 Coccinellidae |
ユーザー | milanis48663220 |
提出日時 | 2021-07-22 22:35:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 160 ms / 2,000 ms |
コード長 | 1,625 bytes |
コンパイル時間 | 1,319 ms |
コンパイル使用メモリ | 127,252 KB |
実行使用メモリ | 9,856 KB |
最終ジャッジ日時 | 2024-07-17 18:49:50 |
合計ジャッジ時間 | 3,910 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 120 ms
7,936 KB |
testcase_02 | AC | 160 ms
9,472 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 158 ms
9,472 KB |
testcase_05 | AC | 93 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 95 ms
7,040 KB |
testcase_08 | AC | 89 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 81 ms
6,940 KB |
testcase_11 | AC | 112 ms
7,552 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 153 ms
9,216 KB |
testcase_14 | AC | 160 ms
9,856 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; ll n, m, k; cin >> n >> m >> k; vector<ll> p(n); for(int i = 0; i < n-1; i++) p[i] = i; p[n-1] = m-accumulate(p.begin(), p.end(), 0ll); vector<ll> ans(n); set<int> st; for(int i = 0; i < n; i++) st.insert(i); ll rem = k; for(int i = 0; i < n; i++){ if(rem >= (n-i-1)){ // 残りの一番最後 auto pt = st.end(); pt--; int idx = *pt; ans[idx] = p[i]; rem -= (n-i-1); st.erase(idx); }else if(rem == 0){ int idx = *st.begin(); ans[idx] = p[i]; st.erase(idx); }else{ vector<int> v; for(int x: st) v.push_back(x); int idx = v[rem]; ans[idx] = p[i]; st.erase(idx); rem = 0; } } for(int i = 0; i < n; i++) cout << ans[i] << endl; }