結果
問題 | No.456 Millions of Submits! |
ユーザー | koba-e964 |
提出日時 | 2016-12-08 01:06:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2,698 ms / 4,500 ms |
コード長 | 1,120 bytes |
コンパイル時間 | 444 ms |
コンパイル使用メモリ | 40,388 KB |
実行使用メモリ | 14,976 KB |
最終ジャッジ日時 | 2024-06-08 00:32:25 |
合計ジャッジ時間 | 32,130 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,525 ms
14,848 KB |
testcase_01 | AC | 1,489 ms
14,848 KB |
testcase_02 | AC | 1,500 ms
14,848 KB |
testcase_03 | AC | 1,510 ms
14,848 KB |
testcase_04 | AC | 1,501 ms
14,848 KB |
testcase_05 | AC | 1,482 ms
14,976 KB |
testcase_06 | AC | 1,489 ms
14,848 KB |
testcase_07 | AC | 1,484 ms
14,848 KB |
testcase_08 | AC | 1,542 ms
14,848 KB |
testcase_09 | AC | 1,510 ms
14,848 KB |
testcase_10 | AC | 1,510 ms
14,976 KB |
testcase_11 | AC | 1,610 ms
14,848 KB |
testcase_12 | AC | 2,698 ms
14,896 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:50:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 50 | scanf("%d", &m); | ~~~~~^~~~~~~~~~ main.cpp:57:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 57 | scanf("%d%d%lf", &a, &b, &t); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <algorithm> #include <cmath> #include <cstdio> #define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++) using namespace std; const int T = 100 * 16384 + 1; double memo_l[T]; /* 0.01 <= z <= 100 */ double lambert_W(double z, bool advised = true) { double lo = 0.0, hi = 100; if (advised) { int idx = z * 16384; lo = memo_l[idx], hi = memo_l[idx + 1]; } REP(i, 0, 45) { if (hi - lo <= 5e-12) { break; } double mid = (lo + hi) / 2; if (mid * exp(mid) <= z) { lo = mid; } else { hi = mid; } } if (not advised) { int idx = z * 16384; memo_l[idx] = lo; } return lo; } double solve(int a, int b, double t) { int idx = floor(t * 10000 + 0.5); if (b == 0) { return pow(t, 1.0 / a); } if (a == 0) { return exp(pow(t, 1.0 / b)); } double res = lambert_W(pow(t, 1.0 / b) * a / b); return exp(res * b / a); } int main(void){ int m; scanf("%d", &m); REP(i, 0, T) { lambert_W(i / 16384.0, false); } REP(i, 0, m) { int a, b; double t; scanf("%d%d%lf", &a, &b, &t); printf("%.15f\n", solve(a, b, t)); } }