結果
問題 | No.456 Millions of Submits! |
ユーザー | ei1333333 |
提出日時 | 2016-12-08 22:16:28 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,020 bytes |
コンパイル時間 | 1,548 ms |
コンパイル使用メモリ | 171,536 KB |
実行使用メモリ | 44,928 KB |
最終ジャッジ日時 | 2024-06-23 16:22:31 |
合計ジャッジ時間 | 8,949 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:16:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 16 | scanf("%d", &M); | ~~~~~^~~~~~~~~~ main.cpp:20:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 20 | scanf("%d %d %lf", &A, &B, &T); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; vector< pair< double, int > > qs[11][11]; double ans[1000000]; double F(int A, int B, double mid) { return (pow(mid, A) * pow(log(mid), B)); } int main() { int M; scanf("%d", &M); for(int i = 0; i < M; i++) { int A, B; double T; scanf("%d %d %lf", &A, &B, &T); qs[A][B].emplace_back(T, i); } for(int i = 0; i < 11; i++) { for(int j = 0; j < 11; j++) { map< double, int > vv; vv.emplace(0, 0); vv.emplace(1e5, 1e5); for(auto &k : qs[i][j]) { double low = (--vv.lower_bound(k.first))->second, high = vv.lower_bound(k.first)->second; while(high - low > 1e-10) { double mid = (low + high) * 0.5; vv.emplace(mid, F(i, j, mid)); double v = F(i, j, mid); vv.emplace(v, mid); if(v < k.first) low = mid; else high = mid; } ans[k.second] = low; } } } for(int i = 0; i < M; i++) { printf("%.12lf\n", ans[i]); } }