結果

問題 No.210 探し物はどこですか?
ユーザー y_mazuny_mazun
提出日時 2015-05-15 23:17:06
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 733 ms / 2,000 ms
コード長 662 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 49,152 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-06 04:15:30
合計ジャッジ時間 25,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
5,248 KB
testcase_01 AC 257 ms
5,376 KB
testcase_02 AC 300 ms
5,376 KB
testcase_03 AC 570 ms
5,376 KB
testcase_04 AC 579 ms
5,376 KB
testcase_05 AC 566 ms
5,376 KB
testcase_06 AC 573 ms
5,376 KB
testcase_07 AC 563 ms
5,376 KB
testcase_08 AC 527 ms
5,376 KB
testcase_09 AC 523 ms
5,376 KB
testcase_10 AC 524 ms
5,376 KB
testcase_11 AC 572 ms
5,376 KB
testcase_12 AC 568 ms
5,376 KB
testcase_13 AC 581 ms
5,376 KB
testcase_14 AC 634 ms
5,376 KB
testcase_15 AC 657 ms
5,376 KB
testcase_16 AC 623 ms
5,376 KB
testcase_17 AC 733 ms
5,376 KB
testcase_18 AC 424 ms
5,376 KB
testcase_19 AC 374 ms
5,376 KB
testcase_20 AC 395 ms
5,376 KB
testcase_21 AC 381 ms
5,376 KB
testcase_22 AC 384 ms
5,376 KB
testcase_23 AC 692 ms
5,376 KB
testcase_24 AC 696 ms
5,376 KB
testcase_25 AC 723 ms
5,376 KB
testcase_26 AC 654 ms
5,376 KB
testcase_27 AC 659 ms
5,376 KB
testcase_28 AC 480 ms
5,376 KB
testcase_29 AC 477 ms
5,376 KB
testcase_30 AC 479 ms
5,376 KB
testcase_31 AC 478 ms
5,376 KB
testcase_32 AC 482 ms
5,376 KB
testcase_33 AC 675 ms
5,376 KB
testcase_34 AC 668 ms
5,376 KB
testcase_35 AC 709 ms
5,376 KB
testcase_36 AC 675 ms
5,376 KB
testcase_37 AC 704 ms
5,376 KB
testcase_38 AC 483 ms
5,376 KB
testcase_39 AC 481 ms
5,376 KB
testcase_40 AC 483 ms
5,376 KB
testcase_41 AC 494 ms
5,376 KB
testcase_42 AC 483 ms
5,376 KB
testcase_43 AC 59 ms
5,376 KB
testcase_44 AC 102 ms
5,376 KB
testcase_45 AC 621 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int getInt()’:
main.cpp:5:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 | inline int getInt(){ int s; scanf("%d", &s); return s; }
      |                             ~~~~~^~~~~~~~~~

ソースコード

diff #

#define REP(i,n) for(int i=0; i<(int)(n); i++)

#include <queue>
#include <cstdio>
inline int getInt(){ int s; scanf("%d", &s); return s; }

#include <set>

using namespace std;

int main(){
  const int n = getInt();
  vector<int> p(n);
  vector<int> q(n);

  REP(i,n) p[i] = getInt();
  REP(i,n) q[i] = getInt();

  priority_queue<pair<double, double> > pq;

  REP(i,n) pq.push(make_pair(p[i] / 1000.0 * q[i] / 100.0, q[i] / 100.0));

  double ans = 0;
  REP(i,5000000){
    const pair<double, double> d = pq.top(); pq.pop();
    ans += (i + 1) * d.first;
    pq.push(make_pair(d.first * (1 - d.second), d.second));
  }

  printf("%.10f\n", ans);
  return 0;
}
0