# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
205307 | TadijaSebez | Bowling (BOI15_bow) | C++11 | 1085 ms | 1016 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int N=11;
const int M=305;
int score[N];
ll dp[M][N][N],tmp[M][N][N];
void Clear(){
for(int i=0;i<M;i++)
for(int j=0;j<N;j++)
for(int k=0;k<N;k++)
tmp[i][j][k]=dp[i][j][k],dp[i][j][k]=0;
}
void Print(int n){
for(int i=0;i<M;i++)
for(int j=0;j<N;j++)
for(int k=0;k<N;k++)
if(dp[i][j][k])
printf("%i %i %i %i %lld\n",n,i,j,k,dp[i][j][k]);
}
void Solve(){
int n;
string str;
scanf("%i",&n);
cin>>str;
for(int i=1;i<=n;i++)scanf("%i",&score[i]);
Clear();
for(int i=0;i<M;i++)if(i==score[n] || score[n]==-1){
string now="";now+=str[n*2-2];now+=str[n*2-1];now+=str[n*2];
//Case 1 xxx
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |