首页 > 其他 > 详细

【Codeforces Round #459 (Div. 2) D】MADMAX

时间:2018-01-30 13:44:21      阅读:292      评论:0      收藏:0      [点我收藏+]

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


f[x][y][z][2]
表示第一个人到了点x,第二个人到了点y,当前轮的字母(1..26),当前轮到谁走的情况下,谁赢。
写个记搜就好。
完全是模拟走的过程。。

【代码】

#include <bits/stdc++.h>
using namespace std;

const int N = 100;

int n,m;
vector <pair<int,int> > g[N+10];
int f[N+10][N+10][26+2][2+2];

int dfs(int x,int y,int now,int turn){
    if (f[x][y][now][turn]!=-1) return f[x][y][now][turn];
    if (turn == 0){
        for (auto temp:g[x]){
            if (temp.second>=now){
                if (dfs(temp.first,y,temp.second,1-turn)==0){
                    return f[x][y][now][turn] = 0;
                }
            }
        }
        return f[x][y][now][turn] = 1;
    }else{
        for (auto temp:g[y]){
            if (temp.second>=now){
                if (dfs(x,temp.first,temp.second,1-turn)==1){
                    return f[x][y][now][turn] = 1;
                }
            }
        }
        return f[x][y][now][turn] = 0;
    }
}

int main(){
    #ifdef LOCAL_DEFINE
        freopen("rush_in.txt", "r", stdin);
    #endif
    ios::sync_with_stdio(0),cin.tie(0);
    memset(f,255,sizeof f);
    cin >> n >> m;
    for (int i = 1;i <= m;i++){
        int x,y;char s[3];
        cin >> x >> y >> s;
        g[x].push_back(make_pair(y,s[0]-'a'));
    }
    for (int i = 1;i <= n;i++){
        for (int j = 1;j <= n;j++){
            if (dfs(i,j,0,0)==1)
                cout<<'B';
            else
                cout<<'A';
        }
        cout<<endl;
    }
    return 0;
}

【Codeforces Round #459 (Div. 2) D】MADMAX

原文:https://www.cnblogs.com/AWCXV/p/8384118.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!