codeforces 512A (拓扑排序)

题目链接:点击这里

题意:给出n个字符串,问有没有一种字符的替换方案使得所有的字符串按照字典序递增排列。

只要使得任意连续的两个有序即可,如果字符a必须比字符b字典序小就建一条a到b的有向边,然后通过一边拓扑排序输出结果即可。

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

int in[maxn];
int g[maxn][maxn];
int n;
string a[105];

void add_edge (char a, char b) { 
    if (!g[a-'a'][b-'a']) in[b-'a']++;
    g[a-'a'][b-'a'] = 1;
    return ;
}

bool build (int i, int j) {
    int l1 = a[i].length (), l2 = a[j].length ();
    for (int x = 0; x < min (l1, l2); x++) {
        if (a[i][x] != a[j][x]) {
            add_edge (a[i][x], a[j][x]);
            return 1;
        }
    }
    if (l2 <= l1) return 0;
    return 1;
}

queue <int> q;
vector <int> ans;
bool topo () {
    ans.clear ();
    while (!q.empty ()) q.pop ();
    int num = 0;
    for (int i = 0; i < 26; i++) if (!in[i]) {
        q.push (i);
        num++;
    }
    while (!q.empty ()) {
        int u = q.front (); q.pop ();
        ans.push_back (u);
        for (int i = 0; i < 26; i++) if (g[u][i] && in[i]) {
            in[i]--;
            if (!in[i]) {
                q.push (i);
                num++;
            }
        }
    }
    if (num != 26) return 0;
    for (int i = 0; i < 26; i++) cout << (char)(ans[i]+'a'); cout << endl;
    return 1;
}

int main () {
    memset (g, 0, sizeof g);
    memset (in, 0, sizeof in);
    cin >> n;
    for (int i = 0; i < n; i++) cin >> a[i];
    for (int i = 0; i < n-1; i++) {
        int j = i+1;
        bool ok = build (i, j);
        if (!ok) {
            cout << "Impossible" << endl;
            return 0;
        }
    }
    if (!topo ()) cout << "Impossible" << endl;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值