「JoyOI1092」麻将
题目描述
众所周知,麻将是我们国家的国粹。这段时间,小D也迷上了麻将这个老少皆宜的游戏。 小D觉得这些不同规则的麻将太麻烦了,所以他集合了很多种麻将规则创造出了一套D麻将。下面是D麻将的几个特点: D麻将中有三种花色,万(w)索(s)筒(t),每个花色下有9张牌,每张牌有4个。 D麻将中没有杠牌,只有顺子和刻子。顺子的含义是相同花色的三张连在一起的牌型(比如说2w3w4w);刻子的含义是三张花色和数字都相同的牌型(比如说2s2s2s)。 D麻将的胡牌的时候手上往往有14张牌,14张牌凑成了四个顺子或刻子和两张一样的牌做雀头就可以胡牌了。 D麻将胡牌的时候有很多种不同的牌型,不同的牌型会有不一样的番数。你的一种牌型可能满足了多个加番牌型,满足多个的情况下就把所有满足的牌型的番数全部加起来计算。 D麻将中有如下牌型可以加番: 平和(一番):4个顺子组成; 断幺九(一番):胡牌的时候手上只有2-8的数字组成的牌型; 一杯口(一番):同花色同数值的顺子两组; 混全带幺九(一番):全部的顺子,刻子中都含有数字1或9; 三色同顺(一番):三种花色同数值的顺子各一组; 一气贯通(一番):由同花色一至九组成顺子; 一色三顺(两番):同花色同数值顺子三组; 对对和(两番):四组刻子; 两杯口(三番):由两组不同的一杯口组成; 三色同刻(三番):三种花色同数值的刻子各一组; 清一色(六番):全部由同一种花色的顺子,刻子及雀头组成; 清老头(六番):全部由1或9的刻子和雀头组成; 比如说一个牌型为1s2s3s4s5s6s7s8s9s1s2s3s9s9s的牌,它满足了平和、一杯口、一气贯通、清一色四个牌型,所以它的番数是9番。 小D希望为D麻将做一个程序来帮忙判断这个牌型的番数是多少。
输入
输入第一行一个测试组数T。 接下来T行每行一个字符串s,表示需要判断番数的牌型。length(s)=28
输出
输出有T行每行一个整数,表示判断牌型的番数为多少。
样例输入
样例输出
提示
数据范围很小可忽略不计 .. BT模拟题 .. 消磨时间用 ..
代码
这个是我的做法,比较短,但是可能有漏洞
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
#include<iostream> #include<cstring> using namespace std; string str; int ans; int w[10],s[10],t[10]; int w1[10],s1[10],t1[10]; int sw[10],ss[10],st[10]; int kw[10],ks[10],kt[10]; int shun,ke; void ini1() { ans=0; memset(w,0,sizeof(w)); memset(s,0,sizeof(s)); memset(t,0,sizeof(t)); memset(w1,0,sizeof(w1)); memset(s1,0,sizeof(s1)); memset(t1,0,sizeof(t1)); } void ini2() { shun=0,ke=0; memset(kw,0,sizeof(kw)); memset(ks,0,sizeof(ks)); memset(kt,0,sizeof(kt)); memset(sw,0,sizeof(sw)); memset(ss,0,sizeof(ss)); memset(st,0,sizeof(st)); } void work1() { if(shun>=4)ans++; } void work2() { int ybk=0; for(int i=1;i<=7;i++) { if(sw[i]>=2)ybk++; if(ss[i]>=2)ybk++; if(st[i]>=2)ybk++; } if(ybk)ans++; if(ybk==2)ans+=3; } void work3() { bool hqdyj=1; for(int i=2;i<=6;i++)if(sw[i]||ss[i]||st[i])hqdyj=0; for(int i=2;i<=8;i++)if(kw[i]||ks[i]||kt[i])hqdyj=0; if(hqdyj)ans++; } void work4() { for(int i=1;i<=7;i++)if(sw[i]&&ss[i]&&st[i]){ans++;return;} } void work5() { if(sw[1]&&sw[4]&&sw[7]){ans++;return;} if(ss[1]&&ss[4]&&ss[7]){ans++;return;} if(st[1]&&st[4]&&st[7]){ans++;return;} } void work6() { for(int i=1;i<=9;i++) { if(sw[i]>=3||ss[i]>=3||st[i]>=3){ans+=2;return;} } } void work7() { if(ke>=4)ans+=2; } void work8() { for(int i=1;i<=9;i++)if(kw[i]&&ks[i]&&kt[i]){ans+=3;return;} } bool search1() { for(int i=1;i<=7;i++) { while(w[i]&&w[i+1]&&w[i+2]) {w[i]--;w[i+1]--;w[i+2]--;sw[i]++;shun++;} while(s[i]&&s[i+1]&&s[i+2]) {s[i]--;s[i+1]--;s[i+2]--;ss[i]++;shun++;} while(t[i]&&t[i+1]&&t[i+2]) {t[i]--;t[i+1]--;t[i+2]--;st[i]++;shun++;} } for(int i=1;i<=9;i++) { while(w[i]>=3){w[i]-=3;kw[i]++;ke++;} while(s[i]>=3){s[i]-=3;ks[i]++;ke++;} while(t[i]>=3){t[i]-=3;kt[i]++;ke++;} if(w[i]>2||w[i]==1)return 0; if(s[i]>2||s[i]==1)return 0; if(t[i]>2||t[i]==1)return 0; } for(int i=1;i<=7;i++) { if(sw[i]>=3) {kw[i]++;kw[i+1]++;kw[i+2]++;ke+=3;} if(ss[i]>=3) {ks[i]++;ks[i+1]++;ks[i+2]++;ke+=3;} if(st[i]>=3) {kt[i]++;kt[i+1]++;kt[i+2]++;ke+=3;} } return 1; } bool search2() { for(int i=1;i<=9;i++) { while(w1[i]>=3){w1[i]-=3;kw[i]++;ke++;} while(s1[i]>=3){s1[i]-=3;ks[i]++;ke++;} while(t1[i]>=3){t1[i]-=3;kt[i]++;ke++;} } for(int i=1;i<=7;i++) { while(w1[i]&&w1[i+1]&&w1[i+2]) {w1[i]--;w1[i+1]--;w1[i+2]--;sw[i]++;shun++;} while(s1[i]&&s1[i+1]&&s1[i+2]) {s1[i]--;s1[i+1]--;s1[i+2]--;ss[i]++;shun++;} while(t1[i]&&t1[i+1]&&t1[i+2]) {t1[i]--;t1[i+1]--;t1[i+2]--;st[i]++;shun++;} } for(int i=1;i<=9;i++) { if(w1[i]>2||w1[i]==1)return 0; if(s1[i]>2||s1[i]==1)return 0; if(t1[i]>2||t1[i]==1)return 0; } return 1; } int doit() { ini2(); if(!search1()) { ini2(); if(!search2())return 0; } work1();//平和 work2();//一杯口,两杯口 work3();//混全带幺九 work4();//三色同顺 work5();//一气贯通 work6();//一色三顺 work7();//对对和 work8();//三色同刻 return 1; } int main() { int p;cin>>p; while(p--) { ini1(); bool dyj=1,qlt=1; int wnum=0,snum=0,tnum=0; cin>>str; for(int i=0;i<28;i+=2) { int x; x=str[i]-'0'; if(x==1||x==9)dyj=0; else qlt=0; if(str[i+1]=='w'){w[x]++;w1[x]++;wnum++;} if(str[i+1]=='s'){s[x]++;s1[x]++;snum++;} if(str[i+1]=='t'){t[x]++;t1[x]++;tnum++;} } if(!doit()){cout<<-1<<endl;continue;} if(dyj)ans++;//断幺九 if(wnum==14||snum==14||tnum==14)ans+=6;//清一色 if(qlt)ans+=6; cout<<ans<<endl; } return 0; } |
网上搜来的480行的题解
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 |
#include<cstdio> #include<cstdlib> #include<cstring> using namespace std; int num[10][20],num2[10][20],t; char s[40]; bool dfs(int now) { if (now==5) { for (int a=1;a<=3;a++) for (int b=1;b<=9;b++) if (num[a][b]!=0) { if (num[a][b]!=2) return false; } return true; } for (int a=1;a<=3;a++) for (int b=1;b<=9;b++) if (num[a][b]!=0) { if (num[a][b+1]!=0 && num[a][b+2]!=0) { num[a][b]--; num[a][b+1]--; num[a][b+2]--; if (dfs(now+1)) { num[a][b]++; num[a][b+1]++; num[a][b+2]++; return true; } num[a][b]++; num[a][b+1]++; num[a][b+2]++; } if (num[a][b]>=3) { num[a][b]-=3; if (dfs(now+1)) { num[a][b]+=3; return true; } num[a][b]+=3; } } return false; } bool check() { return dfs(1); } int work1() { for (int a=1;a<=3;a++) for (int b=1;b<=9;b++) if (num[a][b]>=2) { for (int c=1;c<=3;c++) for (int d=1;d<=9;d++) num2[c][d]=num[c][d]; num2[a][b]-=2; bool able=true; for (int c=1;c<=3;c++) { if (!able) break; for (int d=1;d<=9;d++) if (num2[c][d]!=0) { if (num2[c][d+1]==0 || num2[c][d+2]==0) { able=false; break; } num2[c][d]--; num2[c][d+1]--; num2[c][d+2]--; d--; } } if (able) return 1; } return 0; } int work2() { if (num[1][1] || num[2][1] || num[3][1] || num[1][9] || num[2][9] || num[3][9]) return 0; else return 1; } int work3() { for (int a=1;a<=3;a++) for (int b=1;b<=9;b++) if (num[a][b]>=2) { for (int c=1;c<=3;c++) for (int d=1;d<=9;d++) num2[c][d]=num[c][d]; num2[a][b]-=2; bool able=true; for (int c=1;c<=3;c++) { if (!able) break; for (int d=1;d<=9;d++) if (num2[c][d]!=0) { if (num2[c][d]>=2 && num2[c][d+1]>=2 && num2[c][d+2]>=2) return 1; if (num2[c][d+1]==0 || num2[c][d+2]==0) { able=false; break; } num2[c][d]--; num2[c][d+1]--; num2[c][d+2]--; d--; } } } return 0; } bool dfs2(int now) { if (now==5) return true; for (int a=1;a<=3;a++) for (int b=1;b<=9;b++) if (num2[a][b]!=0) { if (num2[a][b+1]!=0 && num2[a][b+2]!=0 && (b==1 || b+2==9)) { num2[a][b]--; num2[a][b+1]--; num2[a][b+2]--; if (dfs2(now+1)) return true; num2[a][b]++; num2[a][b+1]++; num2[a][b+2]++; } if (num2[a][b]>=3 && (b==1 || b==9)) { num2[a][b]-=3; if (dfs2(now+1)) return true; num2[a][b]+=3; } } return false; } int work4() { for (int a=1;a<=3;a++) for (int b=1;b<=9;b++) if (num[a][b]>=2) { for (int c=1;c<=3;c++) for (int d=1;d<=9;d++) num2[c][d]=num[c][d]; num2[a][b]-=2; if (dfs2(1)) return 1; } return 0; } int work5() { for (int a=1;a<=3;a++) for (int b=1;b<=9;b++) if (num[a][b]>=2) { for (int c=1;c<=3;c++) for (int d=1;d<=9;d++) num2[c][d]=num[c][d]; num2[a][b]-=2; for (int c=1;c<=9;c++) if (num2[1][c] && num2[2][c] && num2[3][c] && num2[1][c+1] && num2[2][c+1] && num2[3][c+1] && num2[1][c+2] && num2[2][c+2] && num2[3][c+2]) { num2[1][c]--;num2[1][c+1]--;num2[1][c+2]--; num2[2][c]--;num2[2][c+1]--;num2[2][c+2]--; num2[3][c]--;num2[3][c+1]--;num2[3][c+2]--; bool able,find=false; for (int c=1;c<=3;c++) { if (find) break; for (int d=1;d<=9;d++) if (num2[c][d]!=0) { find=true; if (num2[c][d]==3) able=true; else { if (num2[c][d]==1 && num2[c][d+1]==1 && num2[c][d+2]==1) able=true; else able=false; } break; } } if (able) return 1; } } return 0; } int work6() { for (int a=1;a<=3;a++) for (int b=1;b<=9;b++) if (num[a][b]>=2) { for (int c=1;c<=3;c++) for (int d=1;d<=9;d++) num2[c][d]=num[c][d]; num2[a][b]-=2; for (int c=1;c<=3;c++) if (num2[c][1] && num2[c][2] && num2[c][3] && num2[c][4] && num2[c][5] && num2[c][6] && num2[c][7] && num2[c][8] && num2[c][9]) { num2[c][1]--; num2[c][2]--; num2[c][3]--; num2[c][4]--; num2[c][5]--; num2[c][6]--; num2[c][7]--; num2[c][8]--; num2[c][9]--; bool able=false,find=false; for (int d=1;d<=3;d++) { if (find) break; for (int e=1;e<=9;e++) if (num2[d][e]!=0) { find=true; if (num2[d][e]==3) able=true; else { if (num2[d][e+1]==1 && num2[d][e+2]==1) able=true; else able=false; } break; } } if (able) return 1; } } return 0; } int work7() { for (int a=1;a<=3;a++) for (int b=1;b<=9;b++) if (num[a][b]>=2) { for (int c=1;c<=3;c++) for (int d=1;d<=9;d++) num2[c][d]=num[c][d]; num2[a][b]-=2; for (int c=1;c<=3;c++) for (int d=1;d<=9;d++) if (num2[c][d]>=3 && num2[c][d+1]>=3 && num2[c][d+2]>=3) { num2[c][d]-=3; num2[c][d+1]-=3; num2[c][d+2]-=3; bool able=false,find=false; for (int d=1;d<=3;d++) { if (find) break; for (int e=1;e<=9;e++) if (num2[d][e]!=0) { find=true; if (num2[d][e]==3) able=true; else { if (num2[d][e+1]==1 && num2[d][e+2]==1) able=true; else able=false; } break; } } if (able) return 2; } } return 0; } int work8() { for (int a=1;a<=3;a++) for (int b=1;b<=9;b++) if (num[a][b]>=2) { for (int c=1;c<=3;c++) for (int d=1;d<=9;d++) num2[c][d]=num[c][d]; num2[a][b]-=2; bool able=true; for (int c=1;c<=3;c++) for (int d=1;d<=9;d++) if (num2[c][d]!=0) { if (num2[c][d]!=3) able=false; } if (able) return 2; } return 0; } int work9() { for (int a=1;a<=3;a++) for (int b=1;b<=9;b++) if (num[a][b]>=2) { for (int c=1;c<=3;c++) for (int d=1;d<=9;d++) num2[c][d]=num[c][d]; num2[a][b]-=2; bool able=true,find=false; for (int c=1;c<=3;c++) { if (find) break; for (int d=1;d<=9;d++) if (num2[c][d]!=0) { find=true; if (num2[c][d]<2 || num2[c][d+1]<2 || num2[c][d+2]<2) { able=false; break; } else { num2[c][d]-=2; num2[c][d+1]-=2; num2[c][d+2]-=2; bool find=false; for (int e=1;e<=3;e++) { if (find) break; for (int f=1;f<=9;f++) if (num2[e][f]!=0) { find=true; if (e==c && f==d) { able=false; break; } if (num2[e][f]!=2 || num2[e][f+1]!=2 || num2[e][f+2]!=2) able=false; break; } } break; } } } if (able) return 3; } return 0; } int work10() { for (int a=1;a<=3;a++) for (int b=1;b<=9;b++) if (num[a][b]>=2) { for (int c=1;c<=3;c++) for (int d=1;d<=9;d++) num2[c][d]=num[c][d]; num2[a][b]-=2; for (int c=1;c<=9;c++) if (num2[1][c]>=3 && num2[2][c]>=3 && num2[3][c]>=3) { num2[1][c]-=3; num2[2][c]-=3; num2[3][c]-=3; bool able=false,find=false; for (int d=1;d<=3;d++) { if (find) break; for (int e=1;e<=9;e++) if (num2[d][e]!=0) { find=true; if (num2[d][e]==3) able=true; else { if (num2[d][e+1]==1 && num2[d][e+2]==1) able=true; else able=false; } break; } } if (able) return 3; } } return 0; } int work11() { for (int a=1;a<=3;a++) { int nowsum=0; for (int b=1;b<=9;b++) nowsum+=num[a][b]; if (nowsum==14) return 6; } return 0; } int work12() { for (int a=1;a<=3;a++) for (int b=2;b<=8;b++) if (num[a][b]) return 0; return 6; } int main() { scanf("%d",&t); for (int a=1;a<=t;a++) { scanf("%s",s+1); memset(num,0,sizeof(num)); for (int a=1;a<=14;a++) { switch(s[a*2]) { case 'w': { num[1][s[a*2-1]-'0']++; break; } case 's': { num[2][s[a*2-1]-'0']++; break; } case 't': { num[3][s[a*2-1]-'0']++; break; } } } if (!check()) { printf("0\n"); continue; } int ans=0; ans+=work1(); ans+=work2(); ans+=work3(); ans+=work4(); ans+=work5(); ans+=work6(); ans+=work7(); ans+=work8(); ans+=work9(); ans+=work10(); ans+=work11(); ans+=work12(); printf("%d\n",ans); } return 0; } |