結果
問題 | No.208 王将 |
ユーザー | はまやんはまやん |
提出日時 | 2016-04-22 17:48:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 577 bytes |
コンパイル時間 | 1,381 ms |
コンパイル使用メモリ | 158,152 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-04 15:06:16 |
合計ジャッジ時間 | 2,301 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 1 ms
6,816 KB |
testcase_18 | WA | - |
testcase_19 | AC | 1 ms
6,816 KB |
testcase_20 | AC | 1 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 2 ms
6,816 KB |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,a,b) for(int i=a;i<b;i++) #define INF INT_MAX/2 int dx[8] = { -1, 0, 1, -1, 1, -1, 0, 1 }; int dy[8] = { 1, 1, 1, 0, 0, -1, -1, -1 }; int main() { int x, y; cin >> x >> y; int x2, y2; cin >> x2 >> y2; int d1 = max(x2, y2) + max(abs(x - x2), abs(y - y2)); int d2 = max(x, y); if (d2 < d1) { cout << d2 << endl; return 0; } int ans = INF; rep(i, 0, 8) { int xx = x2 + dx[i]; int yy = y2 + dy[i]; d1 = max(xx, yy) + max(abs(x - xx), abs(y - yy)); ans = min(ans, d1); } cout << ans << endl; }