結果
問題 | No.596 郵便配達 |
ユーザー | ikd |
提出日時 | 2017-12-29 01:58:33 |
言語 | D (dmd 2.106.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,919 bytes |
コンパイル時間 | 731 ms |
コンパイル使用メモリ | 101,972 KB |
実行使用メモリ | 73,444 KB |
最終ジャッジ日時 | 2024-06-12 23:17:06 |
合計ジャッジ時間 | 11,554 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
12,612 KB |
testcase_01 | AC | 7 ms
12,584 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2,253 ms
73,444 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
void main(){ import std.stdio, std.string, std.conv, std.algorithm; int n, m; rd(n, m); auto xs=new int[](m), ls=new int[](m); auto ys=new int[][](m); foreach(i; 0..m){ rd(xs[i], ls[i]); ys[i]=readln.split.to!(int[]); } int mn=1_000_000_000; mn=min(mn, solve(n, m, xs, ls, ys)); foreach(i; 0..m){ xs[i]=(n-xs[i]-1); foreach(j; 0..ls[i]) ys[i][j]=(n-ys[i][j]-1); } mn=min(mn, solve(n, m, xs, ls, ys)); writeln(mn); } int solve(int n, int m, int[] xs, int[] ls, int[][] ys){ import std.algorithm, std.stdio; auto c=new int[](n); int l=n, r=-1; foreach(i; 0..m){ l=min(l, xs[i]); r=max(r, xs[i]); foreach(y; ys[i]){ l=min(l, y); r=max(r, y); if(y<xs[i]) c[y]++, c[xs[i]]--; } } foreach(i; 1..n) c[i]+=c[i-1]; auto rec=new int[][](3, 3); // R, LR, RLR // (st, ed)=(F, F), (T, F), (T, T) const inf=1_000_000_000; foreach(i; 0..3) fill(rec[i], inf); rec[1][0]=2; if(c[l]==0) rec[0][1]=1; // [0][0]=?? for(auto i=l+1; i<r; i++){ auto nex=new int[][](3, 3); foreach(k; 0..3) fill(nex[k], inf); foreach(j; 0..3){ chmin(nex[2][j], rec[0][j]+3); chmin(nex[1][j], rec[1][j]+2); chmin(nex[2][j], rec[2][j]+3); if(c[i]==0){ if(j<=1) chmin(nex[0][j], rec[0][j]+1); if(j==0) chmin(nex[0][j+1], rec[1][j]+1); chmin(nex[0][j], rec[2][j]+1); } if(j==1) chmin(nex[1][j+1], rec[0][j]+2); } swap(rec, nex); } int ret=inf; chmin(ret, min(rec[0][2], rec[1][2])); chmin(ret, min(rec[0][1], rec[1][1])); return ret; } void chmin(T)(ref T l, T r){ if(l>r) l=r; } void rd(T...)(ref T x){ import std.stdio, std.string, std.conv; auto l=readln.split; assert(l.length==x.length); foreach(i, ref e; x){ e=l[i].to!(typeof(e)); } } void wr(T...)(T x){ import std.stdio; foreach(e; x) write(e, " "); writeln(); }