結果

問題 No.2315 Flying Camera
ユーザー unibopunibop
提出日時 2023-05-26 23:07:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 710 bytes
コンパイル時間 2,929 ms
コンパイル使用メモリ 177,664 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 08:45:51
合計ジャッジ時間 4,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 31 ms
5,376 KB
testcase_04 AC 45 ms
5,376 KB
testcase_05 AC 38 ms
5,376 KB
testcase_06 AC 23 ms
5,376 KB
testcase_07 AC 46 ms
5,376 KB
testcase_08 AC 18 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 19 ms
5,376 KB
testcase_11 AC 45 ms
5,376 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 46 ms
5,376 KB
testcase_15 AC 31 ms
5,376 KB
testcase_16 AC 26 ms
5,376 KB
testcase_17 AC 17 ms
5,376 KB
testcase_18 AC 47 ms
5,376 KB
testcase_19 AC 35 ms
5,376 KB
testcase_20 AC 13 ms
5,376 KB
testcase_21 AC 23 ms
5,376 KB
testcase_22 AC 11 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 51 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 53 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <stack>
#include <queue>
#include <string>
#include <vector>
#include <cmath>
#include <algorithm>
#include <deque>
#include <set>
#include <map>
#include <bitset>
#include <atcoder/all>
#define rep(i,n) for(int i = 0; i < n; i++)

using namespace std;
using namespace atcoder;
using ll = long long;

int main() {
	int n;
	cin >> n;

	vector<int> x(n), y(n);

	for (int i = 0; i < n; i++) {
		cin >> x[i] >> y[i];
	}

	ll ans = 1000000009;
	for (int i = 1; i <= 300; i++) {
		for (int k = 1; k <= 300; k++) {
			ll tmp = 0;
			for (int j = 0; j < n; j++) {
				tmp += abs(i - x[j]) + abs(k - y[j]);
			}
			ans = min(ans, tmp);
		}		
	}

	cout << ans << endl;
}
0