Codeforces Round #459 (Div. 2) DMADMAX

Posted Visitor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #459 (Div. 2) DMADMAX相关的知识,希望对你有一定的参考价值。

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


在这里输入题意

【题解】


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) DMADMAX的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #459 (Div. 2)

Codeforces Round #459 (Div. 2) AEleven

Codeforces Round #459 (Div. 2) DMADMAX

Codeforces Round #459 (Div. 2) B Radio Station

Codeforces Round #459 (Div. 2)The Monster[匹配问题]

Codeforces Round #459 (Div. 2) C 思维,贪心 D 记忆化dp