F F HDU 1173 二維化一維

2021-10-23 03:24:52 字數 871 閱讀 7328

f - f hdu - 1173

乙個郵遞員每次只能從郵局拿走一封信送信。在乙個二維的直角座標系中,郵遞員只能朝四個方向移動,正北、正東、正南、正西。

有n個需要收信的位址,現在需要你幫助找到乙個地方建設郵局,使得郵遞員送往n個位址的路程之和最短。

input 多組輸入,每組資料的第一行乙個整數

n(0output 每組輸入,輸出兩個實數x,y(保留兩位),代表郵局位置。如果座標不唯一輸出其中乙個最優解即可。

sample input

41.0

1.03.0

1.03.0

3.01.0

3.00

sample output

2.00

2.00

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

using namespace std;

#define ll long long

#define inf 1e9

#define db double

const

int len =

1000005

;db x[len]

;db y[len]

;db solve

(db a,

int n)

intmain()

return0;

}

mysql二維轉一維 二維陣列轉為一維陣列

1.很多時候會遇到二維陣列,轉為一維陣列的時候會很苦惱,尤其是剛剛接觸php的phper。如下 將 arr轉化為一維陣列 arr array array uuid aaaaa array uuid bbbbb array uuid ccccc array uuid sssss array uuid ...

字首和(一維 二維)

1.一維字首和 字首和 s i a 1 a 2 a i 區間和 l,r a l a r s r s l 1 題目795 輸入乙個長度為n的整數序列。接下來再輸入m個詢問,每個詢問輸入一對l,r。對於每個詢問,輸出原序列中從第l個數到第r個數的和。輸入格式 第一行包含兩個整數n和m。第二行包含n個整數...

一維 二維字首和

基礎知識 一維字首和 s i a 1 a 2 a i a l a r s r s l 1 二維字首和 s i,j 第 i 行 j 列格仔左上部分所有元素的和 以 x1,y1 為左上角,x2,y2 為右下角的子矩陣的和為 s x2,y2 s x1 1,y2 s x2,y1 1 s x1 1,y1 1 ...