CodeForces CF 360E Levko and Game 贪心+SPFA

24 篇文章 1 订阅
18 篇文章 0 订阅

听说是一道贪心题。。

已知N个点,M+K条有向边及边权,可能有重边和自环。

可以消耗费用修改给定k条边中一些边的边权。

第i条边边权修改范围[li,ri]。

修改给定K条边的长度使从s1到f比s2到f的时间短。


对于边<x,y>,如果dis(s1,x)<dis(s2,x),即如果2条最短路通过x,那么dis(s1,f)必小于dis(s2,f),那么<x,y>的边长修改为l可以使dis(s1,f)更小。

如此修改+重跑最短路后若dis(s1,f)<dis(s2,f)则可以输出WIN,=输出DRAW。

对于平局,判断dis(s1,x)<=dis(s2,x)即可。


发现一定要写if(!check(0))if(!check(1))并不能&&....说好的不满足条件不继续执行的优化呢。。。

#include <cstdio>
#include <cstring>
#define FOR(i,j,k) for(i=j;i<=k;i++)
int read() {
    int s=0,f=1;char ch=getchar();
    for(;ch<'0'||ch>'9';ch=getchar())if(ch=='-')f=-1;
    for(;'0'<=ch&&ch<='9';ch=getchar())s=s*10+ch-'0';
    return s*f;
}
typedef long long ll;
const int N = 10001, M = 20001;

ll da[N], db[N], el[M], er[M];
int n, m, k, s1, s2, t;
int head[N], next[M], from[M], to[M], q[N * 64], cnt = 0;
bool vis[N];

void add(int u, int v, int l, int r) {
    next[++cnt] = head[u]; from[cnt] = u; to[cnt] = v;
    el[cnt] = l; er[cnt] = r; head[u] = cnt;
}

void spfa(ll dis[N], int s) {
    memset(dis, 0x7f, sizeof(ll)*N);
    memset(vis, 0, sizeof vis);
    int f = 0, r = 0, i, u;
    q[r++] = s; dis[s] = 0; vis[s] = 1;
    while (f < r) {
        u = q[f++];
        for (i = head[u]; i; i = next[i]) {
            if (dis[to[i]] > dis[u] + er[i]) {
                dis[to[i]] = dis[u] + er[i];
                if (!vis[to[i]]) {
                    q[r++] = to[i];
                    vis[to[i]] = 1;
                }
            }
        }
        vis[u] = 0;
    }
}

bool check(int f) {
    int flag = 1, i;
    while (flag) {
        flag = 0;
        spfa(da, s1); spfa(db, s2);
        FOR(i,m+1,m+k)
            if(da[from[i]]<db[from[i]] + f && el[i] != er[i])
                er[i] = el[i], flag = 1;
        if (da[t] < db[t] + f) {
            puts(f ? "DRAW" : "WIN");
            FOR(i,m+1,m+k) printf("%d ", er[i]);
            return 1;
        }
    }
    return 0;
}

int main() {
    n = read(), m = read(), k = read();
    s1 = read(), s2 = read(), t = read();
    int i, x, y, z, l, r;
    FOR(i,1,m) x=read(),y=read(),z=read(),add(x,y,z,z);
    FOR(i,1,k) x=read(),y=read(),l=read(),r=read(),add(x,y,l,r);
    
    if(!check(0)) if(!check(1)) puts("LOSE");
    return 0;
}


Levko loves sports pathfinding competitions in his city very much. In order to boost his performance, Levko spends his spare time practicing. The practice is a game.

The city consists of n intersections connected by m + k directed roads. Two or more roads can connect the same pair of intersections. Besides, there can be roads leading from an intersection to itself.

Levko and Zenyk are playing a game. First Levko stands on intersection s1, and Zenyk stands on intersection s2. They both want to get to intersection f. The person who does it quicker wins. If they get there at the same time, the game ends with a draw. By agreement both players start simultaneously and move with the same speed.

Levko wants to win very much. He knows the lengths of all the roads in the city. Also he knows that he can change the lengths of some roads (there are k such roads at all) if he pays the government. So, the government can change the length of the i-th road to any integer value in the segment [liri] (both borders inclusive). Levko wondered if he can reconstruct the roads so as to win the game and whether he can hope for the draw if he cannot win.

You should consider that both players play optimally well. It is guaranteed that we can get from intersections s1 and s2 to intersection f.

Input

The first line contains three integers nm and k (1 ≤ n, m ≤ 1041 ≤ k ≤ 100). The second line contains three integers s1s2 and f(1 ≤ s1, s2, f ≤ n).

The next m lines contains the descriptions of the roads that cannot be changed by Levko. Each line contains three integers aibi and ci(1 ≤ ai, bi ≤ n, 1 ≤ ci ≤ 109), representing a road from intersection ai to intersection bi of length ci.

The next k lines contains the descriptions of the roads that can be changed by Levko. Each line contains four integers aibili and ri(1 ≤ ai, bi ≤ n, 1 ≤ li ≤ ri ≤ 109), representing a road from intersection ai to intersection bi, Levko can set the road's length within limits[li, ri].

Consider all intersections numbered from 1 to n. It is guaranteed that you can get from intersections s1 and s2 to intersection f.

Output

In the first line print string "WIN" (without the quotes) if Levko can win this game, string "DRAW" (without the quotes) if Levko can end the game with a draw and "LOSE" (without the quotes) if he loses for sure.

If the answer is "WIN" or "DRAW", then print on the second line k space-separated integers — the length of the roads Levko sets in the order they occur in the input.

Sample test(s)
input
4 1 3
1 3 4
3 2 2
1 2 1 3
2 4 1 3
3 4 1 3
output
WIN
1 1 3 
input
4 1 3
1 3 4
3 2 2
1 2 1 3
2 4 1 3
3 4 1 2
output
DRAW
1 1 2 
input
5 4 2
1 2 5
1 3 3
1 4 4
2 3 2
2 4 3
3 5 1 5
4 5 4 7
output
LOSE
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值