結果

問題 No.2315 Flying Camera
ユーザー unibopunibop
提出日時 2023-05-26 23:07:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 710 bytes
コンパイル時間 2,813 ms
コンパイル使用メモリ 167,844 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-26 13:32:01
合計ジャッジ時間 4,453 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 25 ms
4,380 KB
testcase_04 AC 34 ms
4,376 KB
testcase_05 AC 29 ms
4,376 KB
testcase_06 AC 17 ms
4,380 KB
testcase_07 AC 34 ms
4,380 KB
testcase_08 AC 14 ms
4,376 KB
testcase_09 AC 4 ms
4,376 KB
testcase_10 AC 14 ms
4,376 KB
testcase_11 AC 33 ms
4,380 KB
testcase_12 AC 7 ms
4,380 KB
testcase_13 AC 5 ms
4,380 KB
testcase_14 AC 34 ms
4,380 KB
testcase_15 AC 24 ms
4,380 KB
testcase_16 AC 19 ms
4,376 KB
testcase_17 AC 12 ms
4,380 KB
testcase_18 AC 33 ms
4,376 KB
testcase_19 AC 25 ms
4,376 KB
testcase_20 AC 10 ms
4,376 KB
testcase_21 AC 19 ms
4,380 KB
testcase_22 AC 9 ms
4,376 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 40 ms
4,380 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 39 ms
4,380 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