結果
問題 | No.2453 Seat Allocation |
ユーザー | ochiaigawa |
提出日時 | 2023-09-01 22:31:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,151 bytes |
コンパイル時間 | 1,859 ms |
コンパイル使用メモリ | 209,204 KB |
実行使用メモリ | 815,616 KB |
最終ジャッジ日時 | 2024-06-11 04:27:06 |
合計ジャッジ時間 | 4,505 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | MLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(false); int N, M; cin >> N >> M; vector<int> A(N), B(M); vector<pair<int, int>> v(N); for(int i = 0; i < N; i++) { cin >> A[i]; } for(int i = 0; i < M; i++) { cin >> B[i]; } long double ok = 1e-10, ng = 1e10; for(int t = 0; t < 50; t++) { long double m = (ok + ng) / 2; int cnt = 0; for(int i = 0; i < N; i++) { if(cnt >= M) { break; } for(int j = 0; j < M; j++) { if((long double) A[i] / B[j] >= m) { cnt++; if(cnt >= M) { break; } } else { break; } } } if(cnt >= M) { ok = m; } else { ng = m; } } priority_queue<pair<long double, int>> pq; for(int i = 0; i < N; i++) { for(int j = 0; j < M; j++) { if((long double) A[i] / B[j] >= ok) { pq.push(make_pair(A[i] / B[j], -i)); } else { break; } } } for(int i = 0; i < M; i++) { auto [c, id] = pq.top(); pq.pop(); cout << 1 - id << '\n'; } return 0; }