462 Bridge hand evaluator

All about problems in Volume 4. If there is a thread about your problem, please use it. If not, create one with its number in the subject.

Moderator: Board moderators

Post Reply
chitta
New poster
Posts: 1
Joined: Sat Feb 27, 2016 8:41 am

462 Bridge hand evaluator

Post by chitta »

Hi, my code gets all test cases passed in udebug but is still getting wa in oj.Please help!!!
#include<stdio.h>
#include<iostream>
#include<string.h>
using namespace std;
int main(){
//freopen("input.txt","r",stdin);
//freopen("output.txt","w",stdout);
char arr[50];char csuit;
int err=0;
int i=0,tp;
int ncards[4];
while(gets(arr)){
bool invalidi=false;
bool stoped[4];

for(int j=0;j<4;j++){
ncards[j]=0;
stoped[j]=false;
}

tp=0;
//tp=0,ns=0,nc=0,nd=0,nh=0;
/*for(i=0;i<strlen(arr);i++){
printf("%c",arr);
}
printf("\n");
*/
for(i=0;i<strlen(arr);i++){
if(arr=='A')
tp+=4;
if(arr=='K')
tp+=3;
if(arr=='Q')
tp+=2;
if(arr=='J')
tp+=1;
if(arr=='S')
ncards[0]++;
if(arr=='C')
ncards[3]++;
if(arr=='H')
ncards[1]++;
if(arr=='D')
ncards[2]++;
}
/*for(int j=0;j<4;j++){
printf("%d \n",ncards[j]);
}*/
for(i=0;i<strlen(arr);i++){
if(arr=='K'){
csuit=arr[i+1];
if((csuit=='S' && ncards[0]==1) || (csuit=='H' && ncards[1]==1) || (csuit=='D' && ncards[2]==1) || (csuit=='C' && ncards[3]==1))
tp--;
}
if(arr[i]=='Q'){
csuit=arr[i+1];
//printf("\ncsuit %c ncards %d\n",csuit,ncards[2]);
if((csuit=='S' && ncards[0]<=2) || (csuit=='H' && ncards[1]<=2) || (csuit=='D' && ncards[2]<=2) || (csuit=='C' && ncards[3]<=2)){
tp--;
//printf("\n- hela\n");
}


}
if(arr[i]=='J'){
csuit=arr[i+1];
if((csuit=='S' && ncards[0]<=3) || (csuit=='H' && ncards[1]<=3) || (csuit=='D' && ncards[2]<=3) || (csuit=='C' && ncards[3]<=3))
tp--;
}

}
if(tp==0){
int c;
for(int j=0;j<4;j++)
if(ncards[j]==0)
c++;
if(c==4)
invalidi=true;
}

int ntscore=tp;
for(int j=0;j<4;j++){
if(ncards[j]==2)
tp++;
if(ncards[j]==0 || ncards[j]==1)
tp+=2;
}
if(invalidi)
break;
/*printf("tp for no trump %d\n",tp);
for(int j=0;j<4;j++)
printf("\n%d\n",ncards[j]);
*/
for(i=0;i<strlen(arr);i++){
if(arr[i]=='A'){
csuit=arr[i+1];
if(csuit=='S')
stoped[0]=true;
if(csuit=='H')
stoped[1]=true;
if(csuit=='D')
stoped[2]=true;
if(csuit=='C')
stoped[3]=true;
}
if(arr[i]=='K'){
csuit=arr[i+1];
if(csuit=='S' && ncards[0]>=2)
stoped[0]=true;
if(csuit=='H' && ncards[1]>=2)
stoped[1]=true;
if(csuit=='D' && ncards[2]>=2)
stoped[2]=true;
if(csuit=='C' && ncards[3]>=2)
stoped[3]=true;
}
if(arr[i]=='Q'){
csuit=arr[i+1];
if(csuit=='S' && ncards[0]>=3)
stoped[0]=true;
if(csuit=='H' && ncards[1]>=3)
stoped[1]=true;
if(csuit=='D' && ncards[2]>=3)
stoped[2]=true;
if(csuit=='C' && ncards[3]>=3)
stoped[3]=true;
}
}
bool allstoped=false;
int c=0;
for(int j=0;j<4;j++){
if(stoped[j])
c++;
}
if(c==4)
allstoped=true;
// printf("\n%d\n",stoped[j]);
//printf("%d tp\n %d nts",tp,ntscore);
if(tp<14){
if(err==0){
printf("PASS");
err=12;
}
else
printf("\nPASS");
}
else if((ntscore>=16) && allstoped){
if(err==0){
printf("BID NO-TRUMP");
err=12;
}
else
printf("\nBID NO-TRUMP");

}
else{
int h=0,index=0;
for(int j=0;j<4;j++){
if(ncards[j]>h){
h=ncards[j];
index=j;
}
}
if(index==0){
if(err==0){
printf("BID S");
err=12;
}
else
printf("\nBID S");
}

if(index==1){
if(err==0){
printf("BID H");
err=12;
}
else
printf("\nBID H");
}
//printf("BID H\n");
if(index==2){
if(err==0){
printf("BID D");
err=12;
}
else
printf("\nBID D");
}
//printf("BID D\n");
if(index==3){
if(err==0){
printf("BID C");
err=12;
}
else
printf("\nBID C");
}
// printf("BID C\n");
}

}



}
Post Reply

Return to “Volume 4 (400-499)”