結果
問題 | No.329 全射 |
ユーザー | 紙ぺーぱー |
提出日時 | 2015-12-22 01:55:40 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 184 ms / 2,000 ms |
コード長 | 11,677 bytes |
コンパイル時間 | 1,216 ms |
コンパイル使用メモリ | 114,560 KB |
実行使用メモリ | 44,800 KB |
最終ジャッジ日時 | 2024-09-18 18:25:30 |
合計ジャッジ時間 | 10,195 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 149 ms
41,216 KB |
testcase_01 | AC | 151 ms
41,344 KB |
testcase_02 | AC | 151 ms
41,344 KB |
testcase_03 | AC | 147 ms
41,472 KB |
testcase_04 | AC | 149 ms
41,344 KB |
testcase_05 | AC | 150 ms
41,472 KB |
testcase_06 | AC | 145 ms
41,344 KB |
testcase_07 | AC | 144 ms
41,472 KB |
testcase_08 | AC | 153 ms
41,344 KB |
testcase_09 | AC | 152 ms
41,600 KB |
testcase_10 | AC | 146 ms
41,344 KB |
testcase_11 | AC | 152 ms
41,344 KB |
testcase_12 | AC | 142 ms
41,472 KB |
testcase_13 | AC | 179 ms
44,544 KB |
testcase_14 | AC | 154 ms
43,520 KB |
testcase_15 | AC | 164 ms
43,264 KB |
testcase_16 | AC | 176 ms
43,392 KB |
testcase_17 | AC | 168 ms
44,288 KB |
testcase_18 | AC | 182 ms
44,416 KB |
testcase_19 | AC | 184 ms
44,800 KB |
testcase_20 | AC | 181 ms
44,160 KB |
testcase_21 | AC | 172 ms
43,648 KB |
testcase_22 | AC | 179 ms
44,800 KB |
testcase_23 | AC | 152 ms
42,240 KB |
testcase_24 | AC | 151 ms
42,368 KB |
testcase_25 | AC | 163 ms
43,136 KB |
testcase_26 | AC | 151 ms
42,496 KB |
testcase_27 | AC | 146 ms
41,472 KB |
testcase_28 | AC | 152 ms
41,344 KB |
testcase_29 | AC | 148 ms
41,728 KB |
testcase_30 | AC | 147 ms
41,472 KB |
testcase_31 | AC | 155 ms
41,344 KB |
testcase_32 | AC | 152 ms
41,600 KB |
testcase_33 | AC | 150 ms
41,344 KB |
testcase_34 | AC | 148 ms
41,728 KB |
testcase_35 | AC | 148 ms
41,728 KB |
testcase_36 | AC | 145 ms
41,600 KB |
testcase_37 | AC | 149 ms
41,728 KB |
testcase_38 | AC | 148 ms
41,728 KB |
testcase_39 | AC | 147 ms
41,856 KB |
testcase_40 | AC | 148 ms
41,600 KB |
testcase_41 | AC | 142 ms
41,600 KB |
testcase_42 | AC | 142 ms
41,728 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; using System.Diagnostics; using System.Collections.Generic; using Debug = System.Diagnostics.Debug; using StringBuilder = System.Text.StringBuilder; using System.Numerics; using Number = System.Int64; using Point = System.Numerics.Complex; namespace Program { //otaku ha saiko~ public class Solver { public void Solve() { var n = sc.Integer(); var m = sc.Integer(); var w = sc.Integer(n); var G = Enumerate(n, x => new List<int>()); for (int i = 0; i < m; i++) { var f = sc.Integer() - 1; var t = sc.Integer() - 1; G[f].Add(t); } //i banme madede j color var dp = Enumerate(1200, x => new ModInteger[1200]); dp[1][1] = 1; for (int i = 1; i <= 1000; i++) for (int j = 1; j <= i; j++) { dp[i + 1][j] += j * dp[i][j]; dp[i + 1][j + 1] += dp[i][j]; } var table = new ModTable(1200); ModInteger ans = 0; for (int i = 0; i < n; i++) { var pq = new PriorityQueue<KeyValuePair<int, int>>((l, r) => r.Key.CompareTo(l.Key)); var max = Enumerate(n, x => -1); max[i] = w[i]; pq.Enqueue(new KeyValuePair<int, int>(w[i], i)); while (pq.Any()) { var p = pq.Dequeue(); var c = p.Key; var pos = p.Value; if (c < max[pos]) continue; foreach (var to in G[pos]) { var nc = Math.Min(c, w[to]); if (nc > max[to]) { max[to] = nc; pq.Enqueue(new KeyValuePair<int, int>(nc, to)); } } } for (int j = 0; j < n; j++) { if (max[j] != w[j]) continue; ModInteger v = table.perm[w[j]] * dp[w[i]][w[j]]; Debug.WriteLine("{0}->{1}: {2}", i, j, v.num); ans += v; } } IO.Printer.Out.WriteLine(ans); } public IO.StreamScanner sc = new IO.StreamScanner(Console.OpenStandardInput()); static T[] Enumerate<T>(int n, Func<int, T> f) { var a = new T[n]; for (int i = 0; i < n; ++i) a[i] = f(i); return a; } static public void Swap<T>(ref T a, ref T b) { var tmp = a; a = b; b = tmp; } } } #region main static class Ex { static public string AsString(this IEnumerable<char> ie) { return new string(System.Linq.Enumerable.ToArray(ie)); } static public string AsJoinedString<T>(this IEnumerable<T> ie, string st = " ") { return string.Join(st, ie); } static public void Main() { Debug.Listeners.Add(new TextWriterTraceListener(Program.IO.Printer.Out)); var solver = new Program.Solver(); solver.Solve(); Program.IO.Printer.Out.Flush(); } } #endregion #region Ex namespace Program.IO { using System.IO; using System.Text; using System.Globalization; public class Printer : StreamWriter { static Printer() { Out = new Printer(Console.OpenStandardOutput()) { AutoFlush = false }; } public static Printer Out { get; set; } public override IFormatProvider FormatProvider { get { return CultureInfo.InvariantCulture; } } public Printer(System.IO.Stream stream) : base(stream, new UTF8Encoding(false, true)) { } public Printer(System.IO.Stream stream, Encoding encoding) : base(stream, encoding) { } public void Write<T>(string format, T[] source) { base.Write(format, source.OfType<object>().ToArray()); } public void WriteLine<T>(string format, T[] source) { base.WriteLine(format, source.OfType<object>().ToArray()); } } public class StreamScanner { public StreamScanner(Stream stream) { str = stream; } public readonly Stream str; private readonly byte[] buf = new byte[1024]; private int len, ptr; public bool isEof = false; public bool IsEndOfStream { get { return isEof; } } private byte read() { if (isEof) return 0; if (ptr >= len) { ptr = 0; if ((len = str.Read(buf, 0, 1024)) <= 0) { isEof = true; return 0; } } return buf[ptr++]; } public char Char() { byte b = 0; do b = read(); while ((b < 33 || 126 < b) && !isEof); return (char)b; } public string Scan() { var sb = new StringBuilder(); for (var b = Char(); b >= 33 && b <= 126; b = (char)read()) sb.Append(b); return sb.ToString(); } public string ScanLine() { var sb = new StringBuilder(); for (var b = Char(); b != '\n'; b = (char)read()) if (b == 0) break; else if (b != '\r') sb.Append(b); return sb.ToString(); } public long Long() { if (isEof) return long.MinValue; long ret = 0; byte b = 0; var ng = false; do b = read(); while (b != 0 && b != '-' && (b < '0' || '9' < b)); if (b == 0) return long.MinValue; if (b == '-') { ng = true; b = read(); } for (; true; b = read()) { if (b < '0' || '9' < b) return ng ? -ret : ret; else ret = ret * 10 + b - '0'; } } public int Integer() { return (isEof) ? int.MinValue : (int)Long(); } public double Double() { var s = Scan(); return s != "" ? double.Parse(Scan(), CultureInfo.InvariantCulture) : double.NaN; } private T[] enumerate<T>(int n, Func<T> f) { var a = new T[n]; for (int i = 0; i < n; ++i) a[i] = f(); return a; } public char[] Char(int n) { return enumerate(n, Char); } public string[] Scan(int n) { return enumerate(n, Scan); } public double[] Double(int n) { return enumerate(n, Double); } public int[] Integer(int n) { return enumerate(n, Integer); } public long[] Long(int n) { return enumerate(n, Long); } } } #endregion #region ModNumber public partial struct ModInteger { public const long Mod = (long)1e9 + 7; public long num; public ModInteger(long n) : this() { num = n % Mod; if (num < 0) num += Mod; } public override string ToString() { return num.ToString(); } public static ModInteger operator +(ModInteger l, ModInteger r) { var n = l.num + r.num; if (n >= Mod) n -= Mod; return new ModInteger() { num = n }; } public static ModInteger operator -(ModInteger l, ModInteger r) { var n = l.num + Mod - r.num; if (n >= Mod) n -= Mod; return new ModInteger() { num = n }; } public static ModInteger operator *(ModInteger l, ModInteger r) { return new ModInteger(l.num * r.num); } public static implicit operator ModInteger(long n) { return new ModInteger(n); } } #endregion #region ModPow public partial struct ModInteger { static public ModInteger Pow(ModInteger v, ModInteger k) { ModInteger ret = 1; var n = k.num; for (; n > 0; n >>= 1, v *= v) { if ((n & 1) == 1) ret = ret * v; } return ret; } } #endregion #region Inverse public partial struct ModInteger { static public ModInteger Inverse(ModInteger v) { long p, q; ExGCD(v.num, Mod, out p, out q); return new ModInteger(p % Mod + Mod); } static public long ExGCD(long a, long b, out long x, out long y) { var u = new long[] { a, 1, 0 }; var v = new long[] { b, 0, 1 }; while (v[0] != 0) { var t = u[0] / v[0]; for (int i = 0; i < 3; i++) { var tmp = u[i] - t * v[i]; u[i] = v[i]; v[i] = tmp; } } x = u[1]; y = u[2]; if (u[0] > 0) return u[0]; for (int i = 0; i < 3; i++) u[i] = -u[i]; return u[0]; } } #endregion #region Permutaion public class ModTable { public ModInteger[] perm, inv; public ModTable(int n) { perm = new ModInteger[n + 1]; inv = new ModInteger[n + 1]; perm[0] = 1; for (int i = 1; i <= n; i++) perm[i] = perm[i - 1] * i; inv[n] = ModInteger.Inverse(perm[n]); for (int i = n - 1; i >= 0; i--) inv[i] = inv[i + 1] * (i + 1); inv[0] = inv[1]; } public ModInteger this[int k] { get { return perm[k]; } } public ModInteger Inverse(int k) { return inv[k]; } public ModInteger Permutation(int n, int k) { if (n < 0 || n >= perm.Length) return 0; if (k < 0 || k >= n) return 0; return perm[n] * inv[n - k]; } public ModInteger Combination(int n, int r) { if (n < 0 || n >= perm.Length || r < 0 || r > n) return 0; return perm[n] * inv[n - r] * inv[r]; } public ModInteger RepeatedCombination(int n, int k) { if (k == 0) return 1; return Combination(n + k - 1, k); } } #endregion #region PriorityQueue and PairingHeap public class PriorityQueue<T> { PairingHeap<T> top; Comparison<T> compare; int size; public int Count { get { return size; } } public PriorityQueue() : this(Comparer<T>.Default) { } public PriorityQueue(Comparison<T> comparison) { compare = comparison; } public PriorityQueue(IComparer<T> comparer) { compare = comparer.Compare; } public void Enqueue(T item) { var heap = new PairingHeap<T>(item); top = PairingHeap<T>.Merge(top, heap, compare); size++; } public T Dequeue() { var ret = top.Key; size--; top = PairingHeap<T>.Pop(top, compare); return ret; } public bool Any() { return size > 0; } public T Peek() { return top.Key; } } #region PairingHeap public class PairingHeap<T> { public PairingHeap(T k) { key = k; } private readonly T key; public T Key { get { return key; } } private PairingHeap<T> head; private PairingHeap<T> next; static public PairingHeap<T> Pop(PairingHeap<T> s, Comparison<T> compare) { return MergeLst(s.head, compare); } static public PairingHeap<T> Merge(PairingHeap<T> l, PairingHeap<T> r, Comparison<T> compare) { if (l == null || r == null) return l == null ? r : l; if (compare(l.key, r.key) > 0) Swap(ref l, ref r); r.next = l.head; l.head = r; return l; } static public PairingHeap<T> MergeLst(PairingHeap<T> s, Comparison<T> compare) { var n = new PairingHeap<T>(default(T)); while (s != null) { PairingHeap<T> a = s, b = null; s = s.next; a.next = null; if (s != null) { b = s; s = s.next; b.next = null; } a = Merge(a, b, compare); a.next = n.next; n.next = a; } while (n.next != null) { var j = n.next; n.next = n.next.next; s = Merge(j, s, compare); } return s; } static void Swap(ref PairingHeap<T> l, ref PairingHeap<T> r) { var t = l; l = r; r = t; } } #endregion #endregion