`
king_tt
  • 浏览: 2110587 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

uva 11210 - Chinese Mahjong

 
阅读更多

链接:

http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=456&page=show_problem&problem=2151


经典的一道暴力回溯题,今天终于做了。。




#include<cstdio>
#include<cstring>
#include<map>
#include<set>
#include<string>
using namespace std;

int n;
int hand[14];
int cnt[35], tmp_cnt[35];
char str[10];
map<string, int>majiang;

char buf[][6] = {
    "1T","2T","3T","4T","5T","6T","7T","8T","9T", // 0~8
    "1S","2S","3S","4S","5S","6S","7S","8S","9S", // 9~17
    "1W","2W","3W","4W","5W","6W","7W","8W","9W", // 18~26 
    "DONG","NAN","XI","BEI",                      // 27~30
    "ZHONG","FA","BAI"                            // 31~33
};


inline void read(){
    memset(cnt, 0, sizeof(cnt));
    hand[0] = majiang[str];
    ++cnt[hand[0]];

    for(int i=1; i<13; ++i){
        scanf("%s", str);
        hand[i] = majiang[str];
        ++cnt[hand[i]];
    }   
}

// 判断能否组成顺子,i是顺子中最小的那张
inline bool isChow(int i){
    return (i<=6 || i>=9&&i<=15 || i>=18&&i<=24) && 
            cnt[i]>=1 && cnt[i+1]>=1 && cnt[i+2]>=1;
}

bool check(int cur){
    if(cur==14){
        return true;

    }
    if(cur==0){ // 选主将
        for(int i=0; i<13; ++i){
            for(int j=i+1; j<14; ++j)if(hand[i]==hand[j]){
                --cnt[hand[i]]; --cnt[hand[j]];
                if(check(cur+2)) return true;
                ++cnt[hand[i]]; ++cnt[hand[j]];
            }
        }

    }else{
        for(int i=0; i<34; ++i)if(cnt[i]>0){
            if(cnt[i]<3 && !isChow(i)) return false;
            if(cnt[i]>=3){
                cnt[i] -= 3; 
                if(check(cur+3)) return true;
                cnt[i] += 3;
            }
            if(isChow(i)){
                --cnt[i]; --cnt[i+1]; --cnt[i+2];
                if(check(cur+3)) return true;
                ++cnt[i]; ++cnt[i+1]; ++cnt[i+2];
            }
        }

    }
    return false;
}

int main(){

    int cas=1;

    // init
    majiang.clear();
    for(int i=0; i<34; ++i)
        majiang[buf[i]] = i;

    while(~scanf("%s", str) && str[0]!='0'){
       
        read();
        printf("Case %d:", cas++);

        memcpy(tmp_cnt, cnt, sizeof(cnt));
        bool ok=false;

        for(int i=0; i<34; ++i)if(cnt[i]!=4){
            hand[13] = i;
            ++cnt[i];
            if(check(0)) 
                printf(" %s", buf[i]), ok=true; 
            memcpy(cnt,tmp_cnt,sizeof(tmp_cnt));

        }
        if(!ok) puts(" Not ready");
        else puts("");

    }

    return 0;   
}


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics