結果
問題 | No.2453 Seat Allocation |
ユーザー | ochiaigawa |
提出日時 | 2023-09-01 22:48:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,394 bytes |
コンパイル時間 | 2,111 ms |
コンパイル使用メモリ | 208,732 KB |
実行使用メモリ | 813,772 KB |
最終ジャッジ日時 | 2024-06-11 04:49:46 |
合計ジャッジ時間 | 4,776 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 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); for(int i = 0; i < N; i++) { cin >> A[i]; } for(int i = 0; i < M; i++) { cin >> B[i]; } double ok = 1e-10, ng = 1e10; for(int t = 0; t < 50; t++) { 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((double) A[i] / B[j] >= m) { cnt++; if(cnt >= M) { break; } } else { break; } } } if(cnt >= M) { ok = m; } else { ng = m; } } vector<int> a, b, c; for(int i = 0; i < N; i++) { for(int j = 0; j < M; j++) { if((double) A[i] / B[j] >= ok) { a.push_back(A[i]); b.push_back(B[j]); c.push_back(i); } else { break; } } } int sz = a.size(); vector<int> id(sz); for(int i = 0; i < sz; i++) { id[i] = i; } sort(id.begin(), id.end(), [&] (int i, int j) { if((long long) a[i] * b[j] == (long long) a[j] * b[i]) { return c[i] < c[j]; } else { return (long long) a[i] * b[j] > (long long) a[j] * b[i]; } }); for(int i = 0; i < M; i++) { cout << c[id[i]] + 1 << '\n'; } return 0; }