CSP-J T1 poker

KukCair發表於2024-11-23

基本思路

首先我沒有用 STL,只用了陣列。

當然 STL 肯定會更簡潔,推薦學一下。

這裡我使用了一個布林型二維陣列 f[5][20] 來存對應花色是否有此點數,用函式 zhn 轉換撲克牌的點數。

程式碼實現

#include <bits/stdc++.h>
using namespace std;
int n, cnt;
bool f[5][20];
// 第一維是花色,第二維是點數
int zhn(char x){ // 按題意轉換點數
    if('2' <= x && x <= '9') return x - '0';
    if(x == 'A') return 1;
    if(x == 'T') return 10;
    if(x == 'J') return 11;
    if(x == 'Q') return 12;
    if(x == 'K') return 13;
}
int main(){
    cin >> n;
    for(int i = 1; i <= n; i++){
        char c1, c2;
        cin >> c1 >> c2;
        if(c1 == 'D') f[1][zhn(c2)] = 1;
        else if(c1 == 'C') f[2][zhn(c2)] = 1;
        else if(c1 == 'H') f[3][zhn(c2)] = 1;
        else if(c1 == 'S') f[4][zhn(c2)] = 1;
    }
    /*遍歷撲克牌*/
    for(int i = 1; i <= 4; i++){
        for(int j = 1; j <= 13; j++){
            if(!f[i][j]) cnt++; // 沒有就需要補
        }
    }
    cout << cnt;
    return 0;
}

相關文章