lightoj 1349 - Aladdin and the Optimal Invitation 【中位数的运用】

来源:互联网 发布:java线程和进程 编辑:程序博客网 时间:2024/05/16 10:24
1349 - Aladdin and the Optimal Invitation
PDF (English)StatisticsForum
Time Limit: 4 second(s)Memory Limit: 32 MB

Finally Aladdin reached home, with the great magical lamp. He was happier than ever. As he was a nice boy, he wanted to share the happiness with all people in the town. So, he wanted to invite all people in town in some place such that they can meet there easily. As Aladdin became really wealthy, so, number of people was not an issue. Here you are given a similar problem.

Assume that the town can be modeled as an m x n 2D grid. People live in the cells. Aladdin wants to select a cell such that all people can gather here with optimal overall cost. Here, cost for a person is the distance he has to travel to reach the selected cell. If a person lives in cell (x, y) and he wants to go to cell (p, q), then the cost is |x-p|+|y-q|. So, distance between (5, 2) and (1, 3) is |5-1|+|2-3| which is 5. And the overall cost is the summation of costs for all people.

So, you are given the information of the town and the people, your task to report a cell which should be selected by Aladdin as the gathering point and theoverall cost should be as low as possible.

Input

Input starts with an integer T (≤ 20), denoting the number of test cases.

Each case starts with a blank line. Next line contains three integers: m, n and q (1 ≤ m, n, q ≤ 50000)m and n denote the number of rows and columns of the grid respectively. Each of the next q lines contains three integers u v w (1 ≤ u ≤ m, 1 ≤ v ≤ n, 1 ≤ w ≤ 10000), meaning that there are w persons who live in cell (u, v). You can assume that there are no people in the cells which are not listed. You can also assume that each of the q lines contains a distinct cell.

Output

For each case, print the case number and the row and column position of the cell where the people should be invited. There can be multiple solutions, any valid one will do.

Sample Input

Output for Sample Input

2

 

5 1 1

2 1 10

 

5 5 4

1 1 1

2 2 1

4 4 1

5 5 1

Case 1: 2 1

Case 2: 3 3

Note

1.      This is a special judge problem; wrong output format may cause 'Wrong Answer'.

2.      Dataset is huge, use faster I/O methods.


PROBLEM SETTER: JANE ALAM JAN


题意:给定一个n*m的图,图上有q个点住有人。现在已经给出每个点的坐标和该点的人数,让你找到一个点使得图中所有人到达该点的曼哈顿距离之和最小。

思路:排序后找中位数,一开始用了map,结果一直WA。换了结构体就过了,醉了。。。


AC代码:


#include <cstdio>#include <cstring>#include <cmath>#include <cstdlib>#include <algorithm>#include <queue>#include <stack>#include <map>#include <vector>#define INF 0x3f3f3f3f#define eps 1e-8#define MAXN 100000+10#define MAXM 50000000#define Ri(a) scanf("%d", &a)#define Rl(a) scanf("%lld", &a)#define Rf(a) scanf("%lf", &a)#define Rs(a) scanf("%s", a)#define Pi(a) printf("%d\n", (a))#define Pf(a) printf("%lf\n", (a))#define Pl(a) printf("%lld\n", (a))#define Ps(a) printf("%s\n", (a))#define W(a) while(a--)#define CLR(a, b) memset(a, (b), sizeof(a))#define MOD 1000000007#define LL long long#define lson o<<1, l, mid#define rson o<<1|1, mid+1, r#define ll o<<1#define rr o<<1|1using namespace std;int n, m, q;struct Node{    int x, y, w;};Node num[MAXN];bool cmp1(Node a, Node b){    return a.x < b.x;}bool cmp2(Node a, Node b){    return a.y < b.y;}int main(){    int t, kcase = 1;    Ri(t);    W(t)    {        Ri(n); Ri(m); Ri(q);        int sumw = 0;        for(int i = 0; i < q; i++)        {             Ri(num[i].x); Ri(num[i].y); Ri(num[i].w);             sumw += num[i].w;        }        sumw /= 2;        sort(num, num+q, cmp1);        int cntx = 0, cnty = 0;        int r, c;        for(int i = 0; i < q; i++)        {            cntx += num[i].w;            if(cntx > sumw)            {                r = num[i].x;                break;            }        }        sort(num, num+q, cmp2);        for(int i = 0; i < q; i++)        {            cnty += num[i].w;            if(cnty > sumw)            {                c = num[i].y;                break;            }        }        printf("Case %d: %d %d\n", kcase++, r, c);    }    return 0;}


0 0
原创粉丝点击