結果
問題 | No.456 Millions of Submits! |
ユーザー | koba-e964 |
提出日時 | 2016-12-08 00:58:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,583 ms / 4,500 ms |
コード長 | 1,097 bytes |
コンパイル時間 | 276 ms |
コンパイル使用メモリ | 42,052 KB |
実行使用メモリ | 96,764 KB |
最終ジャッジ日時 | 2024-06-23 05:45:47 |
合計ジャッジ時間 | 8,939 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
96,616 KB |
testcase_01 | AC | 41 ms
96,676 KB |
testcase_02 | AC | 40 ms
96,636 KB |
testcase_03 | AC | 41 ms
96,512 KB |
testcase_04 | AC | 41 ms
96,672 KB |
testcase_05 | AC | 42 ms
96,764 KB |
testcase_06 | AC | 42 ms
96,512 KB |
testcase_07 | AC | 43 ms
96,672 KB |
testcase_08 | AC | 43 ms
96,692 KB |
testcase_09 | AC | 58 ms
96,640 KB |
testcase_10 | AC | 55 ms
96,612 KB |
testcase_11 | AC | 199 ms
96,512 KB |
testcase_12 | AC | 1,583 ms
96,640 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:47:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 47 | scanf("%d", &m); | ~~~~~^~~~~~~~~~ main.cpp:58:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 58 | 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 N = 11; const int B = 100001; double memo[N][N][B]; /* 0.01 <= z <= 100 */ double lambert_W(double z) { double lo = 0.0, hi = 100; 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; } } return lo; } double solve(int a, int b, double t) { int idx = floor(t * 10000 + 0.5); if (memo[a][b][idx] >= 0) { return memo[a][b][idx]; } double &ret = memo[a][b][idx]; if (b == 0) { return ret=pow(t, 1.0 / a); } if (a == 0) { return ret=exp(pow(t, 1.0 / b)); } double res = lambert_W(pow(t, 1.0 / b) * a / b); return ret=exp(res * b / a); } int main(void){ int m; scanf("%d", &m); REP(i, 0, N) { REP(j, 0, N) { REP(k, 0, B) { memo[i][j][k] = -1; } } } REP(i, 0, m) { int a, b; double t; scanf("%d%d%lf", &a, &b, &t); printf("%.15f\n", solve(a, b, t)); } }