結果
問題 | No.2010 Magical Floor |
ユーザー | tarattata1 |
提出日時 | 2021-01-14 00:15:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 11 ms / 2,000 ms |
コード長 | 1,221 bytes |
コンパイル時間 | 701 ms |
コンパイル使用メモリ | 81,712 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 05:50:37 |
合計ジャッジ時間 | 1,477 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 6 ms
6,944 KB |
testcase_12 | AC | 6 ms
6,944 KB |
testcase_13 | AC | 8 ms
6,944 KB |
testcase_14 | AC | 9 ms
6,944 KB |
testcase_15 | AC | 8 ms
6,944 KB |
testcase_16 | AC | 8 ms
6,940 KB |
testcase_17 | AC | 8 ms
6,940 KB |
testcase_18 | AC | 8 ms
6,940 KB |
testcase_19 | AC | 11 ms
6,940 KB |
testcase_20 | AC | 11 ms
6,940 KB |
testcase_21 | AC | 5 ms
6,944 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <cmath> #include <iomanip> #define INF 2140000000 using namespace std; void solve() { int n, x; cin >> n >> x; vector<int> h(n), a(n); int i, j; int preh = 0; for (i = 0; i < n; i++) { int curh; cin >> curh; h[i] = curh - preh; preh = curh; } for (i = 0; i < n; i++) { cin >> a[i]; } double ans = (double)x * a[0]; int mina = INF; for (i = 0; i < n; i++) { if (a[i] < mina) { double sumdist = 0; double sumtime = 0; for (j = 0; j < i; j++) { double sint = (double)a[i] / a[j]; double cost = sqrt(1 - sint * sint); double dist = sint/cost * h[j]; sumdist += dist; sumtime += (double)h[j] / cost * a[j] * 2; } if (sumdist * 2 < x) { ans = min(ans, sumtime + (x - sumdist * 2) * a[i]); } } mina = min(mina, a[i]); } cout << setprecision(10) << ans << endl; return; } int main() { int T, t; cin >> T; for (t = 0; t < T; t++) { solve(); } return 0; }