Submission #1022003


Source Code Expand

#define DEB
#include<bits/stdc++.h>
#define REP(i,m) for(int i=0;i<(m);++i)
#define REPN(i,m,in) for(int i=(in);i<(m);++i)
#define ALL(t) (t).begin(),(t).end()
#define CLR(a) memset((a),0,sizeof(a))
#define pb push_back
#define mp make_pair
#define fr first
#define sc second

using namespace std;


#ifdef DEB
#define dump(x)  cerr << #x << " = " << (x) << endl
#define prl cerr<<"called:"<< __LINE__<<endl
#define dumpR(x) cerr<<"\x1b[31m"<<#x<<" = " <<(x)<<"\x1b[39m"<<endl
#define dumpY(x) cerr<<"\x1b[33m"<<#x<<" = " <<(x)<<"\x1b[39m"<<endl
#define dumpG(x) cerr<<"\x1b[32m"<<#x<<" = " <<(x)<<"\x1b[39m"<<endl
template<class T> void debug(T a,T b){ for(;a!=b;++a) cerr<<*a<<' ';cerr<<endl;}
#else
#define dump(x) ;
#define dumpR(x) ;
#define dumpY(x) ;
#define dumpG(x) ;
#define prl ;
template<class T> void debug(T a,T b){ ;}
#endif

template<class T> void chmin(T& a,const T& b) { if(a>b) a=b; }
template<class T> void chmax(T& a,const T& b) { if(a<b) a=b; }

typedef long long int lint;
typedef pair<int,int> pi;

namespace std{
  template<class S,class T>
  ostream &operator <<(ostream& out,const pair<S,T>& a){
    out<<'('<<a.fr<<','<<a.sc<<')';
    return out;
  }
}

//const int INF=5e8;
double p[10],q[10];
void input(double* a){
  REP(i,6) cin>>a[i],a[i]/=100;
}

typedef pair<double,double> pd;
pd doit(pd a,pd b){
  if(a.fr>b.fr) swap(a,b);
  if(a.sc<=b.sc) return mp(-1,-1);
  double d1=b.fr-a.fr,d2=a.sc-b.sc;
  return mp(d1/(d1+d2),(a.fr*d2+a.sc*d1)/(d1+d2));
}
pd ar[1005];

double solve(double a){
  double res=0;
  REP(i,1<<6) chmax(res,ar[i].fr*(1-a)+a*ar[i].sc);
  return res;
}
int main(){
  input(p);input(q);

  REP(i,1<<6){
    double x=0,y=0;
    REP(j,6){
      if(i>>j&1) x+=q[j];
      else y+=p[j];
    }
    ar[i]=mp(x,y);
  }
  const int m =1<<6;
  double res=1;
  REP(i,m) REP(j,m){
    pd cross=doit(ar[i],ar[j]);
    chmin(res,solve(cross.fr));
  }
  chmin(res,solve(0));
  chmin(res,solve(1));

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



Submission Info

Submission Time
Task D - Dice Game
User hogloid
Language C++14 (GCC 5.4.1)
Score 1000
Code Size 2069 Byte
Status AC
Exec Time 3 ms
Memory 384 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1000 / 1000
Status
AC × 2
AC × 41
Set Name Test Cases
Sample example0.txt, example1.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt, 022.txt, 023.txt, 024.txt, 025.txt, 026.txt, 027.txt, 028.txt, 029.txt, 030.txt, 031.txt, 032.txt, 033.txt, 034.txt, 035.txt, 036.txt, 037.txt, 038.txt, example0.txt, example1.txt
Case Name Status Exec Time Memory
000.txt AC 3 ms 256 KB
001.txt AC 3 ms 256 KB
002.txt AC 3 ms 256 KB
003.txt AC 3 ms 256 KB
004.txt AC 3 ms 256 KB
005.txt AC 3 ms 256 KB
006.txt AC 3 ms 256 KB
007.txt AC 3 ms 256 KB
008.txt AC 3 ms 256 KB
009.txt AC 3 ms 256 KB
010.txt AC 3 ms 256 KB
011.txt AC 3 ms 256 KB
012.txt AC 3 ms 256 KB
013.txt AC 3 ms 256 KB
014.txt AC 3 ms 256 KB
015.txt AC 3 ms 256 KB
016.txt AC 3 ms 256 KB
017.txt AC 3 ms 256 KB
018.txt AC 3 ms 256 KB
019.txt AC 3 ms 256 KB
020.txt AC 3 ms 256 KB
021.txt AC 3 ms 256 KB
022.txt AC 3 ms 256 KB
023.txt AC 3 ms 256 KB
024.txt AC 3 ms 256 KB
025.txt AC 3 ms 256 KB
026.txt AC 3 ms 256 KB
027.txt AC 3 ms 256 KB
028.txt AC 3 ms 256 KB
029.txt AC 3 ms 256 KB
030.txt AC 3 ms 256 KB
031.txt AC 3 ms 256 KB
032.txt AC 3 ms 256 KB
033.txt AC 3 ms 384 KB
034.txt AC 3 ms 256 KB
035.txt AC 3 ms 256 KB
036.txt AC 3 ms 256 KB
037.txt AC 3 ms 256 KB
038.txt AC 3 ms 256 KB
example0.txt AC 3 ms 256 KB
example1.txt AC 3 ms 256 KB