結果
問題 | No.325 マンハッタン距離2 |
ユーザー | tjake |
提出日時 | 2015-12-18 02:47:40 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,017 bytes |
コンパイル時間 | 442 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-16 08:23:24 |
合計ジャッジ時間 | 1,462 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,272 KB |
testcase_01 | AC | 11 ms
6,144 KB |
testcase_02 | AC | 11 ms
6,272 KB |
testcase_03 | AC | 11 ms
6,144 KB |
testcase_04 | AC | 11 ms
6,272 KB |
testcase_05 | AC | 11 ms
6,272 KB |
testcase_06 | RE | - |
testcase_07 | AC | 11 ms
6,016 KB |
testcase_08 | AC | 11 ms
6,144 KB |
testcase_09 | AC | 11 ms
6,144 KB |
testcase_10 | AC | 11 ms
6,144 KB |
testcase_11 | AC | 11 ms
6,272 KB |
testcase_12 | AC | 11 ms
6,272 KB |
testcase_13 | AC | 11 ms
6,272 KB |
testcase_14 | AC | 11 ms
6,272 KB |
testcase_15 | AC | 11 ms
6,144 KB |
testcase_16 | AC | 11 ms
6,272 KB |
testcase_17 | AC | 11 ms
6,272 KB |
testcase_18 | AC | 11 ms
6,400 KB |
testcase_19 | AC | 11 ms
6,144 KB |
testcase_20 | RE | - |
testcase_21 | AC | 11 ms
6,272 KB |
testcase_22 | AC | 11 ms
6,272 KB |
testcase_23 | AC | 11 ms
6,144 KB |
testcase_24 | AC | 11 ms
6,272 KB |
testcase_25 | AC | 11 ms
6,144 KB |
testcase_26 | AC | 12 ms
6,272 KB |
ソースコード
x1,y1,x2,y2,d=map(int,raw_input().split()) x1 = max(x1,-d) x2 = min(x2, d) y1 = max(y1,-d) y2 = min(y2, d) def get(x): if x == 0: return [-d, d] if x == d or x == -d: return [0] if x>0: return [] if x>d else [d-x, x-d] else: return [] if x<-d else [d+x, -x-d] def h(x, y): return abs(x)+abs(y) def fix(x, y): return min(max(x, x1), x2), min(max(y, y1), y2) p = [] e = get(x1) p.extend(fix(x1, y) for y in e) e = get(x2) p.extend(fix(x2, y) for y in e) e = get(y1) p.extend(fix(x, y1) for x in e) e = get(y2) p.extend(fix(x, y2) for x in e) p = list(set(p)) p = [e for e in p if h(e[0], e[1])<=d] x1 = min(e[0] for e in p) x2 = max(e[0] for e in p) y1 = min(e[1] for e in p) y2 = max(e[1] for e in p) ans = (x2-x1+1)*(y2-y1+1) l = len(p) for i in xrange(l): s1, t1 = p[i] for j in xrange(i+1, l): s2, t2 = p[j] dx = abs(s2-s1) dy = abs(t2-t1) if dx==dy and h(s1+s2, t1+t2)==2*d: ans -= dx*(dx+1)/2 print ans