結果
問題 | No.2010 Magical Floor |
ユーザー | satashun |
提出日時 | 2022-07-15 23:15:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,739 bytes |
コンパイル時間 | 2,127 ms |
コンパイル使用メモリ | 204,904 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-27 20:38:13 |
合計ジャッジ時間 | 10,098 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 8 ms
5,376 KB |
testcase_02 | AC | 12 ms
5,376 KB |
testcase_03 | AC | 19 ms
5,376 KB |
testcase_04 | AC | 26 ms
5,376 KB |
testcase_05 | AC | 33 ms
5,376 KB |
testcase_06 | AC | 37 ms
5,376 KB |
testcase_07 | AC | 39 ms
5,376 KB |
testcase_08 | AC | 48 ms
5,376 KB |
testcase_09 | AC | 57 ms
5,376 KB |
testcase_10 | AC | 58 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 477 ms
5,376 KB |
testcase_13 | AC | 374 ms
5,376 KB |
testcase_14 | AC | 411 ms
5,376 KB |
testcase_15 | AC | 640 ms
5,376 KB |
testcase_16 | AC | 634 ms
5,376 KB |
testcase_17 | AC | 626 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 896 ms
5,376 KB |
testcase_21 | WA | - |
ソースコード
#pragma region satashun //#pragma GCC optimize("Ofast") //#pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> using namespace std; using uint = unsigned int; using ll = long long; using ull = unsigned long long; using pii = pair<int, int>; template <class T> using V = vector<T>; template <class T> using VV = V<V<T>>; template <class T> V<T> make_vec(size_t a) { return V<T>(a); } template <class T, class... Ts> auto make_vec(size_t a, Ts... ts) { return V<decltype(make_vec<T>(ts...))>(a, make_vec<T>(ts...)); } #define pb push_back #define eb emplace_back #define mp make_pair #define fi first #define se second #define rep(i, n) rep2(i, 0, n) #define rep2(i, m, n) for (int i = m; i < (n); i++) #define per(i, b) per2(i, 0, b) #define per2(i, a, b) for (int i = int(b) - 1; i >= int(a); i--) #define ALL(c) (c).begin(), (c).end() #define SZ(x) ((int)(x).size()) constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n - 1); } template <class T, class U> void chmin(T& t, const U& u) { if (t > u) t = u; } template <class T, class U> void chmax(T& t, const U& u) { if (t < u) t = u; } template <class T> void mkuni(vector<T>& v) { sort(ALL(v)); v.erase(unique(ALL(v)), end(v)); } template <class T> vector<int> sort_by(const vector<T>& v, bool increasing = true) { vector<int> res(v.size()); iota(res.begin(), res.end(), 0); if (increasing) { stable_sort(res.begin(), res.end(), [&](int i, int j) { return v[i] < v[j]; }); } else { stable_sort(res.begin(), res.end(), [&](int i, int j) { return v[i] > v[j]; }); } return res; } template <class T, class U> istream& operator>>(istream& is, pair<T, U>& p) { is >> p.first >> p.second; return is; } template <class T, class U> ostream& operator<<(ostream& os, const pair<T, U>& p) { os << "(" << p.first << "," << p.second << ")"; return os; } template <class T> istream& operator>>(istream& is, vector<T>& v) { for (auto& x : v) { is >> x; } return is; } template <class T> ostream& operator<<(ostream& os, const vector<T>& v) { os << "{"; rep(i, v.size()) { if (i) os << ","; os << v[i]; } os << "}"; return os; } #ifdef LOCAL void debug_out() { cerr << endl; } template <typename Head, typename... Tail> void debug_out(Head H, Tail... T) { cerr << " " << H; debug_out(T...); } #define debug(...) \ cerr << __LINE__ << " [" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__) #define dump(x) cerr << __LINE__ << " " << #x << " = " << (x) << endl #else #define debug(...) (void(0)) #define dump(x) (void(0)) #endif template <class T> void scan(vector<T>& v, T offset = T(0)) { for (auto& x : v) { cin >> x; x += offset; } } // suc : 1 = newline, 2 = space template <class T> void print(T x, int suc = 1) { cout << x; if (suc == 1) cout << "\n"; else if (suc == 2) cout << " "; } template <class T> void print(const vector<T>& v, int suc = 1) { for (int i = 0; i < v.size(); ++i) print(v[i], i == int(v.size()) - 1 ? suc : 2); } template <class T> void show(T x) { print(x, 1); } template <typename Head, typename... Tail> void show(Head H, Tail... T) { print(H, 2); show(T...); } struct prepare_io { prepare_io() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(10); } } prep_io; #pragma endregion satashun const double pi = acos(-1.0); const double INF = 1e19; void slv() { int N, X; cin >> N >> X; V<int> H(N + 1); for (int i = 1; i <= N; ++i) cin >> H[i]; V<double> A(N); cin >> A; double ans = X * A[0]; // on the border auto calc = [&](double th) -> double { double ds = 0; double tm = 0; double res = INF; rep(j, N) { double wi = H[j + 1] - H[j]; double nd = ds + wi * tan(th); chmin(res, tm * 2 + (X - ds * 2) * A[j]); if (nd > X / 2) { chmin(ans, res); return res; } nd = ds; ds += wi * tan(th); tm += wi / cos(th) * A[j]; if (j == N - 1) break; th = asin(sin(th) * A[j] / A[j + 1]); } chmin(ans, res); return res; }; double lo = 0, hi = pi / 2; rep(t, 1000) { double u1 = (lo * 2 + hi) / 3; double u2 = (lo + hi * 2) / 3; if (calc(u1) < calc(u2)) { hi = u2; } else { lo = u1; } } show(ans); } int main() { int cases = 1; cin >> cases; rep(i, cases) slv(); return 0; }