結果
問題 | No.2453 Seat Allocation |
ユーザー | hiro71687k |
提出日時 | 2023-09-01 21:52:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 247 ms / 2,000 ms |
コード長 | 1,366 bytes |
コンパイル時間 | 4,438 ms |
コンパイル使用メモリ | 269,520 KB |
実行使用メモリ | 17,128 KB |
最終ジャッジ日時 | 2024-06-25 09:25:15 |
合計ジャッジ時間 | 8,268 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 238 ms
17,128 KB |
testcase_06 | AC | 173 ms
5,376 KB |
testcase_07 | AC | 40 ms
15,616 KB |
testcase_08 | AC | 21 ms
5,376 KB |
testcase_09 | AC | 247 ms
16,872 KB |
testcase_10 | AC | 244 ms
16,868 KB |
testcase_11 | AC | 243 ms
17,000 KB |
testcase_12 | AC | 170 ms
5,376 KB |
testcase_13 | AC | 173 ms
5,376 KB |
testcase_14 | AC | 169 ms
5,376 KB |
testcase_15 | AC | 184 ms
5,376 KB |
testcase_16 | AC | 166 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 189 ms
10,420 KB |
testcase_19 | AC | 211 ms
15,680 KB |
testcase_20 | AC | 87 ms
9,288 KB |
testcase_21 | AC | 129 ms
6,068 KB |
testcase_22 | AC | 189 ms
7,608 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using namespace std; using ll=long long; using ld=long double; ld pie=3.141592653589793; ll mod=1000000007; ld inf=10000999999999900; pair<ld,pair<ll,ll>> op(pair<ld,pair<ll,ll>> a,pair<ld,pair<ll,ll>> b){ if (a.first>b.first) { return a; }else if (a.first==b.first) { if (a.second.first<b.second.first) { return a; }else{ return b; } }else{ return b; } } pair<ld,pair<ll,ll>>e(){ return {-inf,{-inf,-inf}}; } int main(){ ll n,m; cin >> n >> m; vector<ll>a(n),b(m); for (ll i = 0; i < n; i++) { cin >> a[i]; } for (ll i = 0; i < m; i++) { cin >> b[i]; } sort(b.begin(),b.end()); b.push_back(inf); vector<pair<ld,pair<ll,ll>>>p(n); for (ll i = 0; i < n; i++) { p[i]={(ld)((ld)a[i]/(ld)b[0]),{i,0}}; } segtree<pair<ld,pair<ll,ll>>,op,e>seg(p); vector<ll>ans(m); for (ll i = 0; i < m; i++) { pair<ld,pair<ll,ll>>pp=seg.all_prod(); ans[i]=pp.second.first+1; pp.second.second++; pp.first=(ld)((ld)a[pp.second.first]/(ld)b[pp.second.second]); seg.set(pp.second.first,pp); } for (ll i = 0; i < m; i++) { cout << ans[i] << endl; } }