結果

問題 No.210 探し物はどこですか?
ユーザー LayCurseLayCurse
提出日時 2015-05-26 23:13:24
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 2,152 bytes
コンパイル時間 1,133 ms
コンパイル使用メモリ 147,284 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-20 15:13:07
合計ジャッジ時間 3,944 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
4,376 KB
testcase_01 AC 21 ms
4,380 KB
testcase_02 AC 27 ms
4,376 KB
testcase_03 AC 27 ms
4,376 KB
testcase_04 AC 25 ms
4,380 KB
testcase_05 AC 24 ms
4,380 KB
testcase_06 AC 28 ms
4,376 KB
testcase_07 AC 5 ms
4,380 KB
testcase_08 AC 13 ms
4,376 KB
testcase_09 AC 12 ms
4,376 KB
testcase_10 AC 13 ms
4,376 KB
testcase_11 AC 16 ms
4,376 KB
testcase_12 AC 17 ms
4,380 KB
testcase_13 AC 22 ms
4,376 KB
testcase_14 AC 22 ms
4,376 KB
testcase_15 AC 27 ms
4,380 KB
testcase_16 AC 26 ms
4,380 KB
testcase_17 AC 28 ms
4,376 KB
testcase_18 AC 26 ms
4,380 KB
testcase_19 AC 25 ms
4,376 KB
testcase_20 AC 26 ms
4,376 KB
testcase_21 AC 26 ms
4,376 KB
testcase_22 AC 26 ms
4,376 KB
testcase_23 AC 32 ms
4,380 KB
testcase_24 AC 34 ms
4,376 KB
testcase_25 AC 34 ms
4,376 KB
testcase_26 AC 34 ms
4,380 KB
testcase_27 AC 32 ms
4,380 KB
testcase_28 AC 36 ms
4,380 KB
testcase_29 AC 36 ms
4,376 KB
testcase_30 AC 36 ms
4,376 KB
testcase_31 AC 36 ms
4,380 KB
testcase_32 AC 36 ms
4,380 KB
testcase_33 AC 36 ms
4,376 KB
testcase_34 AC 37 ms
4,380 KB
testcase_35 AC 36 ms
4,376 KB
testcase_36 AC 35 ms
4,380 KB
testcase_37 AC 36 ms
4,376 KB
testcase_38 AC 38 ms
4,376 KB
testcase_39 AC 39 ms
4,376 KB
testcase_40 AC 38 ms
4,376 KB
testcase_41 AC 38 ms
4,376 KB
testcase_42 AC 38 ms
4,380 KB
testcase_43 AC 28 ms
4,376 KB
testcase_44 AC 4 ms
4,380 KB
testcase_45 AC 28 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define REP(i,a,b) for(i=a;i<b;i++)
#define rep(i,n) REP(i,0,n)

#define mygc(c) (c)=getchar_unlocked()
#define mypc(c) putchar_unlocked(c)

void reader(int *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);}
void writer(double x, char c){printf("%.15f",x);mypc(c);}
template<class T> void writerLn(T x){writer(x,'\n');}

template <class T>
struct heapEx {
  int *hp, *place, size; T *val;

  void malloc(int N){hp=(int*)std::malloc(N*sizeof(int));place=(int*)std::malloc(N*sizeof(int));val=(T*)std::malloc(N*sizeof(T));}
  void free(){free(hp);free(place);free(val);}
  void* malloc(int N, void *workMemory){hp=(int*)workMemory;workMemory=(void*)(hp+N);place=(int*)workMemory;workMemory=(void*)(place+N);val=(T*)workMemory;workMemory=(void*)(val+N);return workMemory;}
  void init(int N){int i;size=0;rep(i,N)place[i]=-1;}
  void up(int n){int m;while(n){m=(n-1)/2;if(val[hp[m]]<=val[hp[n]])break;swap(hp[m],hp[n]);swap(place[hp[m]],place[hp[n]]);n=m;}}
  void down(int n){int m;for(;;){m=2*n+1;if(m>=size)break;if(m+1<size&&val[hp[m]]>val[hp[m+1]])m++;if(val[hp[m]]>=val[hp[n]])break;swap(hp[m],hp[n]);swap(place[hp[m]],place[hp[n]]);n=m;}}
  void change(int n, T v){T f=val[n];val[n]=v;if(place[n]==-1){place[n] = size;hp[size++] = n;up(place[n]);}else{if(f < v) down(place[n]); else if(f > v) up(place[n]);}}
  int pop(void){int res=hp[0];place[res]=-1;size--;if(size)hp[0]=hp[size],place[hp[0]]=0,down(0);return res;}
};

int N, P[2000], Q[2000];
double p[2000], q[2000];

int main(){
  int i, j, k, loop;
  double res = 0, pp = 1;
  heapEx<double> hp;

  reader(&N);
  rep(i,N) reader(P+i);
  rep(i,N) reader(Q+i);

  rep(i,N) p[i] = P[i] / 1000.0;
  rep(i,N) q[i] = Q[i] / 100.0;

  hp.malloc(N);
  hp.init(N);
  rep(i,N) hp.change(i, -p[i]*q[i]);

  rep(loop,400000){
    i = hp.hp[0];
    res -= (loop+1) * hp.val[i];
    p[i] += hp.val[i];
    pp += hp.val[i];
    hp.change(i, -p[i]*q[i]);
  }
  res += (400000 + res/(1-pp) + pp*(40000+res)) * pp;
  writerLn(res);

  return 0;
}
0