結果
問題 | No.957 植林 |
ユーザー | fgwiebfaoish |
提出日時 | 2019-12-20 00:17:53 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 5,198 bytes |
コンパイル時間 | 1,242 ms |
コンパイル使用メモリ | 115,024 KB |
実行使用メモリ | 105,032 KB |
最終ジャッジ日時 | 2024-07-07 02:15:39 |
合計ジャッジ時間 | 21,831 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
31,984 KB |
testcase_01 | AC | 27 ms
25,020 KB |
testcase_02 | AC | 27 ms
25,024 KB |
testcase_03 | AC | 770 ms
91,660 KB |
testcase_04 | AC | 715 ms
87,772 KB |
testcase_05 | AC | 840 ms
95,132 KB |
testcase_06 | AC | 955 ms
95,792 KB |
testcase_07 | AC | 768 ms
90,864 KB |
testcase_08 | AC | 833 ms
93,012 KB |
testcase_09 | AC | 877 ms
91,520 KB |
testcase_10 | AC | 928 ms
96,300 KB |
testcase_11 | AC | 870 ms
95,044 KB |
testcase_12 | AC | 893 ms
91,004 KB |
testcase_13 | AC | 900 ms
88,108 KB |
testcase_14 | AC | 1,267 ms
97,312 KB |
testcase_15 | AC | 1,054 ms
89,980 KB |
testcase_16 | AC | 939 ms
89,152 KB |
testcase_17 | AC | 900 ms
88,280 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Collections; using System.Collections.Specialized; using System.Linq; using System.Text; using System.IO; using System.Reflection; using static System.Math; using System.Numerics; static class Program{ const int mod=(int)1e9+7; static void Main(){ Sc sc=new Sc(); var s=sc.Ia; var h=new long[s[0]][]; for(int i = 0;i<s[0];i++) { h[i]=sc.La; } var a=sc.La; var b=sc.La; long p=0,ans=0; int g=s[0]+s[1]+s[0]*s[1]+1; var fl=new Mfp(g+1); for(int i = 0;i<s[0];i++) { long z=h[i].Sum(); a[i]=z-a[i]; p=Min(p,a[i]); ans+=z; } long inf=(long)1e18; for(int i = 0;i<s[1];i++) { b[i]=-b[i]; for(int j = 0;j<s[0];j++) { b[i]+=h[j][i]; int t=s[0]+s[1]+i*s[0]+j; fl.Edge(g-1,t,h[j][i]); fl.Edge(t,j,inf); fl.Edge(t,s[0]+i,inf); } p=Min(p,b[i]); } p=-p; for(int i = 0;i<s[0];i++) { fl.Edge(g-1,i,p); fl.Edge(i,g,a[i]+p); } for(int i = s[0];i<s[1]+s[0];i++) { fl.Edge(g-1,i,p); fl.Edge(i,g,b[i-s[0]]+p); } long d=fl.Dinic(g-1,g); Console.WriteLine("{0}",ans+p*(s[0]+s[1])-d); } } public class Mfp{ private List<int>[] li; private Dictionary<int,long>[] h; private bool[] b; private int[] l; private long ans; private int n,go; private const int inf=int.MaxValue; public Mfp(int n){ this.n=n; li=new List<int>[n]; h=new Dictionary<int,long>[n+1]; for(int i=0;i<n;i++){ li[i]=new List<int>(); h[i]=new Dictionary<int,long>(); } } public void Edge(int a,int b,long c){ if(a==b){return;} if(!h[a].ContainsKey(b)){ li[a].Add(b); li[b].Add(a); h[a].Add(b,c); h[b].Add(a,0); } else{h[a][b]+=c;} } public long Dinic(int st,int go){ this.go=st; ans=0; long z=1; while(z>0){ l=new int[n]; var qu=new Queue<Tuple<int,int>>(); qu.Enqueue(Tuple.Create(st,1)); l[st]=1; while(qu.Count>0){ var e=qu.Dequeue(); for(int i=0;i<li[e.Item1].Count;i++){ if(l[li[e.Item1][i]]==0&&h[e.Item1][li[e.Item1][i]]!=0){ l[li[e.Item1][i]]=e.Item2+1; qu.Enqueue(Tuple.Create(li[e.Item1][i],e.Item2+1)); } } if(e.Item1==go){break;} } b=new bool[n]; z=Fu3(go,inf); ans+=z; } return ans; } private long Fu3(int a,long p){ if(a==go){return p;} long u=0; for(int i=0;i<li[a].Count&&p>u;i++){ if(!b[li[a][i]]&&l[li[a][i]]<l[a]&&h[li[a][i]][a]!=0){ long z=Fu3(li[a][i],Min(p-u,h[li[a][i]][a])); h[li[a][i]][a]-=z; h[a][li[a][i]]+=z; u+=z; } } if(u==0){b[a]=true;} return u; } public long Ff(int st,int go){ this.go=go; ans=0; long z=1; while(z>0){ b=new bool[n]; z=Fu2(st,inf); ans+=z; } return ans; } private long Fu2(int a,long p){ if(a==go){return p;} long u=0; b[a]=true; for(int i=0;i<li[a].Count&&p>u;i++){ if(!b[li[a][i]]&&h[a][li[a][i]]!=0){ long z=Fu2(li[a][i],Min(p-u,h[a][li[a][i]])); h[a][li[a][i]]-=z; h[li[a][i]][a]+=z; u+=z; } } if(u!=0){b[a]=false;} return u; } public void Vc(int s,Action<int> f){ b=new bool[n]; Fu4(s,0,f); for(int i=0;i<li[s].Count;i++){ if(h[s][li[s][i]]==0&&!b[li[s][i]]){f(li[s][i]);} } } private void Fu4(int a,int p,Action<int> f){ b[a]=true; if((p&1)==0&&p!=0){f(a);} for(int i=0;i<li[a].Count;i++){ if(h[a][li[a][i]]!=0&&!b[li[a][i]]){Fu4(li[a][i],p+1,f);} } } } public class Sc{ public int I{get{return int.Parse(Console.ReadLine());}} public long L{get{return long.Parse(Console.ReadLine());}} public double D{get{return double.Parse(Console.ReadLine());}} public string S{get{return Console.ReadLine();}} public int[] Ia{get{return Array.ConvertAll(Console.ReadLine().Split(),int.Parse);}} public long[] La{get{return Array.ConvertAll(Console.ReadLine().Split(),long.Parse);}} public double[] Da{get{return Array.ConvertAll(Console.ReadLine().Split(),double.Parse);}} public string[] Sa{get{return Console.ReadLine().Split();}} public object[] Oa{get{return Console.ReadLine().Split();}} public int[] Ia2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),int.Parse);}} public int[] Ia3(int a){return Array.ConvertAll((a.ToString()+" "+Console.ReadLine()).Split(),int.Parse);} public int[] Ia3(bool a,int b,bool c,int d){return Array.ConvertAll(((a?b.ToString()+" ":"")+Console.ReadLine()+(c?" "+d.ToString():"")).Split(),int.Parse);} public long[] La2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),long.Parse);}} public long[] La3(int a){return Array.ConvertAll((a.ToString()+" "+Console.ReadLine()).Split(),long.Parse);} public long[] La3(bool a,int b,bool c,int d){return Array.ConvertAll(((a?b.ToString()+" ":"")+Console.ReadLine()+(c?" "+d.ToString():"")).Split(),long.Parse);} public T[] Arr<T>(int n,Func<T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f();}return a;} public T[] Arr<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;} public T[] Arr<T>(int n,Func<string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(Console.ReadLine().Split());}return a;} public T[] Arr<T>(int n,Func<int,string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i,Console.ReadLine().Split());}return a;} }