結果

問題 No.2354 Poor Sight in Winter
ユーザー Heart_BlueHeart_Blue
提出日時 2023-06-16 22:33:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,581 bytes
コンパイル時間 1,332 ms
コンパイル使用メモリ 123,480 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-24 15:13:19
合計ジャッジ時間 16,881 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1,174 ms
6,944 KB
testcase_12 AC 939 ms
6,940 KB
testcase_13 AC 1,872 ms
6,940 KB
testcase_14 AC 1,992 ms
6,940 KB
testcase_15 AC 1,753 ms
6,940 KB
testcase_16 AC 1,868 ms
6,940 KB
testcase_17 TLE -
testcase_18 AC 321 ms
6,940 KB
testcase_19 AC 983 ms
6,948 KB
testcase_20 AC 388 ms
6,940 KB
testcase_21 AC 10 ms
6,940 KB
testcase_22 AC 147 ms
6,940 KB
testcase_23 AC 162 ms
6,940 KB
testcase_24 AC 776 ms
6,944 KB
testcase_25 AC 83 ms
6,944 KB
testcase_26 AC 57 ms
6,940 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 7 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdlib>
#include <cctype>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
#include <string>
#include <iostream>
#include <sstream>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <fstream>
#include <numeric>
#include <iomanip>
#include <bitset>
#include <list>
#include <stdexcept>
#include <functional>
#include <utility>
#include <ctime>
#include <cassert>
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
#define MEM(a,b) memset((a),(b),sizeof(a))
const LL INF = 1e9 + 7;
const int N = 5e2 + 10;
int a[N][N];
pair<int, int> vp[N];
void floyd(int n)
{
	for (int k = 0; k <= n; k++)
	{
		for (int i = 0; i <= n; i++)
		{
			for (int j = 0; j <= n; j++)
				a[i][j] = min(a[i][j], a[i][k] + a[k][j]);
		}
	}
}
inline int dis(int i, int j)
{
	return abs(vp[i].first - vp[j].first) + abs(vp[i].second - vp[j].second);
}
int main()
{
	//freopen("input.txt", "r", stdin);
	//freopen("output.txt", "w", stdout);
	int n, k;
	scanf("%d%d", &n, &k);
	scanf("%d%d%d%d", &vp[0].first, &vp[0].second, &vp[n + 1].first, &vp[n + 1].second);
	for (int i = 1; i <= n; i++)
		scanf("%d%d", &vp[i].first, &vp[i].second);
	n++;
	int l = 1, r = dis(0, n);
	int ans = r;
	while (l <= r)
	{
		int mid = (l + r) / 2;
		for (int i = 0; i <= n; i++)
		{
			for (int j = 0; j <= n; j++)
			{
				int d = dis(i, j) - mid;
				d = max(0, d);
				a[i][j] = (d + mid - 1) / (mid);
			}
		}
		floyd(n);
		if (a[0][n] <= k) ans = mid, r = mid - 1;
		else l = mid + 1;
	}
	printf("%d\n", ans);
	return 0;
}
0