結果
問題 | No.456 Millions of Submits! |
ユーザー | ei1333333 |
提出日時 | 2016-12-08 22:10:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,519 bytes |
コンパイル時間 | 1,886 ms |
コンパイル使用メモリ | 166,888 KB |
実行使用メモリ | 32,052 KB |
最終ジャッジ日時 | 2024-06-23 16:21:24 |
合計ジャッジ時間 | 11,462 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | OLE | - |
コンパイルメッセージ
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++) { sort(begin(qs[i][j]), end(qs[i][j])); if(qs[i][j].empty()) continue; double low = 0, high = 1e5; for(int z = 0; z < 45; z++) { double mid = (low + high) * 0.5; if(F(i, j, mid) < qs[i][j][0].first) low = mid; else high = mid; } ans[qs[i][j][0].second] = low; if(qs[i][j].size() == 1) continue; high = 1e5; for(int z = 0; z < 45; z++) { double mid = (low + high) * 0.5; if(F(i, j, mid) < qs[i][j].back().first) low = mid; else high = mid; } ans[qs[i][j].back().second] = low; for(int x = 1; x < qs[i][j].size() - 1; x++) { auto &k = qs[i][j][x]; low = ans[qs[i][j][x - 1].second]; high = ans[qs[i][j].back().second]; for(int z = 0; z < 10; z++) { double mid = (low + high) * 0.5; cout << F(i, j, mid) << endl; if(F(i, j, mid) < k.first) low = mid; else high = mid; } ans[k.second] = low; } } } for(int i = 0; i < M; i++) { printf("%.12lf\n", ans[i]); } }