結果

問題 No.1301 Strange Graph Shortest Path
ユーザー EmKjpEmKjp
提出日時 2020-12-02 21:23:42
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 9,990 bytes
コンパイル時間 2,952 ms
コンパイル使用メモリ 111,500 KB
実行使用メモリ 73,332 KB
最終ジャッジ日時 2023-10-11 11:57:38
合計ジャッジ時間 26,466 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
27,612 KB
testcase_01 AC 57 ms
20,640 KB
testcase_02 AC 541 ms
60,600 KB
testcase_03 AC 452 ms
52,152 KB
testcase_04 AC 578 ms
59,792 KB
testcase_05 AC 480 ms
57,564 KB
testcase_06 AC 581 ms
56,400 KB
testcase_07 AC 553 ms
56,964 KB
testcase_08 AC 463 ms
54,892 KB
testcase_09 AC 547 ms
56,284 KB
testcase_10 AC 474 ms
57,024 KB
testcase_11 AC 575 ms
58,756 KB
testcase_12 AC 581 ms
61,468 KB
testcase_13 AC 601 ms
60,680 KB
testcase_14 AC 514 ms
56,016 KB
testcase_15 AC 524 ms
56,036 KB
testcase_16 AC 650 ms
68,444 KB
testcase_17 AC 550 ms
58,728 KB
testcase_18 AC 513 ms
57,948 KB
testcase_19 AC 563 ms
59,428 KB
testcase_20 AC 564 ms
57,320 KB
testcase_21 AC 547 ms
58,852 KB
testcase_22 AC 528 ms
62,920 KB
testcase_23 AC 587 ms
60,864 KB
testcase_24 AC 550 ms
59,836 KB
testcase_25 AC 621 ms
59,388 KB
testcase_26 AC 547 ms
61,044 KB
testcase_27 AC 570 ms
61,040 KB
testcase_28 AC 486 ms
54,864 KB
testcase_29 AC 668 ms
63,012 KB
testcase_30 AC 621 ms
58,700 KB
testcase_31 AC 594 ms
59,744 KB
testcase_32 AC 57 ms
20,588 KB
testcase_33 AC 329 ms
73,332 KB
testcase_34 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Text;
using System.Linq;

using E = System.Linq.Enumerable;
using Weight = System.Int64;
using System.Threading;

internal partial class Solver {
    public void Run() {
        var n = ni();
        var m = ni();
        var D = new PrimalDual(n);
        for (int i = 0; i < m; i++) {
            var u = ni() - 1;
            var v = ni() - 1;
            var c = ni();
            var d = ni();
            D.AddEdge(u, v, 1, c);
            D.AddEdge(u, v, 1, d);
            D.AddEdge(v, u, 1, c);
            D.AddEdge(v, u, 1, d);
        }
        cout.WriteLine(D.Run(0, n - 1, 2).TotalCost);
    }
}


public class MinCostFlowResult {
    public Weight TotalCost;
    public Weight TotalFlow;
}

/// <summary>
/// Cost can be negative.
/// O(FVE)
/// </summary>
public class PrimalDual {
    private readonly int N;
    private readonly List<List<Edge>> adjacents;

    private readonly Weight[] _distance;
    private readonly bool[] _inQueue;
    private readonly Edge[] _prevEdges;
    private readonly Queue<int> _queue;

    public class Edge {
        public int From, To;
        public Weight Flow, Capacity, Cost;
        public Edge Reverse;
        public Edge(int from, int to, Weight capacity, Weight cost, Weight flow = 0) {
            From = from;
            To = to;
            Cost = cost;
            Flow = flow;
            Capacity = capacity;
        }
        public Weight Residue {
            get {
                return Capacity - Flow;
            }
        }
    }

    public PrimalDual(int n) {
        N = n;
        adjacents = new List<List<Edge>>();
        for (int i = 0; i < n; i++) {
            adjacents.Add(new List<Edge>());
        }
        _distance = new Weight[N];
        _inQueue = new bool[N];
        _prevEdges = new Edge[N];
        _queue = new Queue<int>(N);
    }

    public IEnumerable<Edge> GetEdges() {
        return adjacents.SelectMany(a => a);
    }

    public void AddEdge(int from, int to, Weight capacity, Weight cost) {
        var e = new Edge(from, to, capacity, cost);
        adjacents[from].Add(e);
    }

    private Edge[] FindShortestPathTree(int source) {
        Array.Clear(_inQueue, 0, _inQueue.Length);
        Array.Clear(_prevEdges, 0, _prevEdges.Length);
        for (int i = 0; i < N; i++) {
            _distance[i] = Weight.MaxValue;
        }
        _distance[source] = 0;
        _inQueue[source] = true;
        _queue.Enqueue(source);
        while (_queue.Count > 0) { // SPFA
            int now = _queue.Dequeue();
            _inQueue[now] = false;
            foreach (var e in adjacents[now]) {
                if (e.Residue <= 0) {
                    continue;
                }

                if (_distance[now] != Weight.MaxValue && _distance[e.To] > _distance[now] + e.Cost) {
                    _distance[e.To] = _distance[now] + e.Cost;
                    _prevEdges[e.To] = e;
                    if (!_inQueue[e.To]) {
                        _inQueue[e.To] = true;
                        _queue.Enqueue(e.To);
                    }
                }
            }
        }
        return _prevEdges;
    }

    public MinCostFlowResult Run(int source, int sink, Weight flow) {
        Weight totalCost = 0;
        Weight totalFlow = 0;

        while (totalFlow < flow) {
            var prevEdges = FindShortestPathTree(source);
            if (prevEdges[sink] == null) {
                break;
            }

            long incrementalFlow = flow - totalFlow;
            for (var e = prevEdges[sink]; e != null; e = prevEdges[e.From]) {
                incrementalFlow = Math.Min(incrementalFlow, e.Residue);
            }
            for (var e = prevEdges[sink]; e != null; e = prevEdges[e.From]) {
                if (e.Reverse == null) {
                    var reverseEdge = new Edge(e.To, e.From, 0, -e.Cost) {
                        Reverse = e
                    };
                    e.Reverse = reverseEdge;
                    adjacents[e.To].Add(reverseEdge);
                }
                totalCost += e.Cost * incrementalFlow;
                e.Flow += incrementalFlow;
                e.Reverse.Flow -= incrementalFlow;
            }
            totalFlow += incrementalFlow;
        }
        return new MinCostFlowResult { TotalCost = totalCost, TotalFlow = totalFlow };
    }
}


// PREWRITEN CODE BEGINS FROM HERE

static public class StringExtensions {
    static public string JoinToString<T>(this IEnumerable<T> source, string separator = " ") {
        return string.Join(separator, source);
    }
}

internal partial class Solver : Scanner {
    static readonly int? StackSizeInMebiByte = null; //50;
    public static void StartAndJoin(Action action, int maxStackSize) {
        var thread = new Thread(new ThreadStart(action), maxStackSize);
        thread.Start();
        thread.Join();
    }

    public static void Main() {
#if LOCAL
        byte[] inputBuffer = new byte[1000000];
        var inputStream = Console.OpenStandardInput(inputBuffer.Length);
        using (var reader = new StreamReader(inputStream, Console.InputEncoding, false, inputBuffer.Length)) {
            Console.SetIn(reader);
            new Solver(Console.In, Console.Out).Run();
        }
#else
        Console.SetOut(new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false });
        if (StackSizeInMebiByte.HasValue) {
            StartAndJoin(() => new Solver(Console.In, Console.Out).Run(), StackSizeInMebiByte.Value * 1024 * 1024);
        } else {
            new Solver(Console.In, Console.Out).Run();
        }
        Console.Out.Flush();
#endif
    }

#pragma warning disable IDE0052
    private readonly TextReader cin;
    private readonly TextWriter cout;
    private readonly TextWriter cerr;
#pragma warning restore IDE0052

    public Solver(TextReader reader, TextWriter writer)
        : base(reader) {
        cin = reader;
        cout = writer;
        cerr = Console.Error;
    }

    public Solver(string input, TextWriter writer)
        : this(new StringReader(input), writer) {
    }

#pragma warning disable IDE1006
#pragma warning disable IDE0051
    private int ni() { return NextInt(); }
    private int[] ni(int n) { return NextIntArray(n); }
    private long nl() { return NextLong(); }
    private long[] nl(int n) { return NextLongArray(n); }
    private double nd() { return NextDouble(); }
    private double[] nd(int n) { return NextDoubleArray(n); }
    private string ns() { return Next(); }
    private string[] ns(int n) { return NextArray(n); }
#pragma warning restore IDE1006
#pragma warning restore IDE0051
}

#if DEBUG
internal static class LinqPadExtension {
    public static string TextDump<T>(this T obj) {
        if (obj is IEnumerable) return (obj as IEnumerable).Cast<object>().JoinToString().Dump();
        else return obj.ToString().Dump();
    }
    public static T Dump<T>(this T obj) {
        return LINQPad.Extensions.Dump(obj);
    }
}
#endif

public class Scanner {
    private readonly TextReader Reader;
    private readonly CultureInfo ci = CultureInfo.InvariantCulture;

    private readonly char[] buffer = new char[2 * 1024];
    private int cursor = 0, length = 0;
    private string Token;
    private readonly StringBuilder sb = new StringBuilder(1024);

    public Scanner()
        : this(Console.In) {
    }

    public Scanner(TextReader reader) {
        Reader = reader;
    }

    public int NextInt() { return checked((int)NextLong()); }
    public long NextLong() {
        var s = Next();
        long r = 0;
        int i = 0;
        bool negative = false;
        if (s[i] == '-') {
            negative = true;
            i++;
        }
        for (; i < s.Length; i++) {
            r = r * 10 + (s[i] - '0');
#if DEBUG
            if (!char.IsDigit(s[i])) throw new FormatException();
#endif
        }
        return negative ? -r : r;
    }
    public double NextDouble() { return double.Parse(Next(), ci); }
    public string[] NextArray(int size) {
        string[] array = new string[size];
        for (int i = 0; i < size; i++) {
            array[i] = Next();
        }

        return array;
    }
    public int[] NextIntArray(int size) {
        int[] array = new int[size];
        for (int i = 0; i < size; i++) {
            array[i] = NextInt();
        }

        return array;
    }

    public long[] NextLongArray(int size) {
        long[] array = new long[size];
        for (int i = 0; i < size; i++) {
            array[i] = NextLong();
        }

        return array;
    }

    public double[] NextDoubleArray(int size) {
        double[] array = new double[size];
        for (int i = 0; i < size; i++) {
            array[i] = NextDouble();
        }

        return array;
    }

    public string Next() {
        if (Token == null) {
            if (!StockToken()) {
                throw new Exception();
            }
        }
        var token = Token;
        Token = null;
        return token;
    }

    public bool HasNext() {
        if (Token != null) {
            return true;
        }

        return StockToken();
    }

    private bool StockToken() {
        while (true) {
            sb.Clear();
            while (true) {
                if (cursor >= length) {
                    cursor = 0;
                    if ((length = Reader.Read(buffer, 0, buffer.Length)) <= 0) {
                        break;
                    }
                }
                var c = buffer[cursor++];
                if (33 <= c && c <= 126) {
                    sb.Append(c);
                } else {
                    if (sb.Length > 0) break;
                }
            }

            if (sb.Length > 0) {
                Token = sb.ToString();
                return true;
            }

            return false;
        }
    }
}
0