1114 Family Property

本文介绍了一种用于统计家庭成员及家庭财产平均面积和套数的算法。通过并查集处理家庭关系,实现对家庭规模、人均房产数量及面积的精确计算。

1114 Family Property
This time, you are supposed to help us collect the data for family-owned property. Given each person’s family members, and the estate(房产)info under his/her own name, we need to know the size of each family, and the average area and number of sets of their real estate.

Input Specification:
Each input file contains one test case. For each case, the first line gives a positive integer N (≤1000). Then N lines follow, each gives the infomation of a person who owns estate in the format:

ID Father Mother k Child
​1
​​ ⋯Child
​k
​​ M
​estate
​​ Area

where ID is a unique 4-digit identification number for each person; Father and Mother are the ID’s of this person’s parents (if a parent has passed away, -1 will be given instead); k (0≤k≤5) is the number of children of this person; Child
​i
​​ ‘s are the ID’s of his/her children; M
​estate
​​ is the total number of sets of the real estate under his/her name; and Area is the total area of his/her estate.

Output Specification:
For each case, first print in a line the number of families (all the people that are related directly or indirectly are considered in the same family). Then output the family info in the format:

ID M AVG
​sets
​​ AVG
​area
​​

where ID is the smallest ID in the family; M is the total number of family members; AVG
​sets
​​ is the average number of sets of their real estate; and AVG
​area
​​ is the average area. The average numbers must be accurate up to 3 decimal places. The families must be given in descending order of their average areas, and in ascending order of the ID’s if there is a tie.

Sample Input:
10
6666 5551 5552 1 7777 1 100
1234 5678 9012 1 0002 2 300
8888 -1 -1 0 1 1000
2468 0001 0004 1 2222 1 500
7777 6666 -1 0 2 300
3721 -1 -1 1 2333 2 150
9012 -1 -1 3 1236 1235 1234 1 100
1235 5678 9012 0 1 50
2222 1236 2468 2 6661 6662 1 300
2333 -1 3721 3 6661 6662 6663 1 100
Sample Output:
3
8888 1 1.000 1000.000
0001 15 0.600 100.000
5551 4 0.750 100.000
分析:考察并查集的知识。
可以分成两步处理,第一步输入n条数据,记录id,fin,mid,child的根结点。
第二步统计家族个数,以及相应的人数。
参考代码(来源别处)

#include<iostream>
#include<vector>
#include<algorithm>
#define N 10002
using namespace std;
struct node {
    int id, fid, mid, estate;
    double area;
}person[N];
struct node1 {
    int id, people= 0, total_estate=0;
    double total_area = 0, AVG_area;
    bool flag = false;
}family[N];
bool visited[N];
int father[N];
int find(int x) {             //找根
    while (x != father[x])
        x = father[x];
    return x;
}
void Union(int a, int b) {   //并集!!!
    int findA = find(a);
    int findB = find(b);
    if (findA < findB)
        father[findB] = findA;
    else if(findB<findA)
        father[findA] = findB;
}
bool cmp(node1 a, node1 b) {
    if (a.AVG_area != b.AVG_area)
        return a.AVG_area > b.AVG_area;
    else return a.id < b.id;
}
int main()
{
    int n,child, k;
    for (int i = 0; i < N; i++) {
        father[i] = i;
        visited[i] = false;
    }
    scanf_s("%d", &n);

    for (int i = 0; i < n; i++) {
        scanf_s("%d%d%d%d", &person[i].id, &person[i].fid, &person[i].mid, &k);
        visited[person[i].id] = true;
        if (person[i].fid != -1) {
            visited[person[i].fid] = true;
            Union(person[i].id, person[i].fid);
        }
        if (person[i].mid != -1) {
            visited[person[i].mid] = true;
            Union(person[i].id, person[i].mid);
        }
        for (int j = 0; j < k; j++) {
            scanf_s("%d", &child);
            visited[child] = true;
            Union(person[i].id, child);
        }
        scanf_s("%d%lf", &person[i].estate, &person[i].area);
    }

    //n条记录
    for (int i = 0; i < n; i++) {
        int x = find(person[i].id);
        family[x].flag = true;
        family[x].id = x;
        family[x].total_area += person[i].area;
        family[x].total_estate += person[i].estate;
    }
    int cnt = 0;
    for (int i = 0; i < N; i++) {
        if (visited[i]) {
            int x = find(i);
            family[x].people++;
        }
        if (family[i].flag)
            cnt++;
    }
    for (int i = 0; i < N; i++) {
        if (family[i].people)
            family[i].AVG_area = family[i].total_area / family[i].people;
        else family[i].AVG_area = 0;
    }
    printf("%d\n", cnt);
    sort(family, family + N, cmp);
    for (int i = 0; i < cnt; i++) {
        printf("%04d %d %.3f %.3f\n", family[i].id, family[i].people, family[i].total_estate*1.0 / family[i].people, family[i].AVG_area);
    }


    return 0;
}

欢迎评论!!!

`Assignment to readonly property` 错误通常表示尝试对只读属性进行赋值操作。以下是一些可能的解决方案: #### 检查属性声明 在Objective - C中,若属性被声明为只读(`readonly`),则不能直接对其赋值。可将属性声明修改为可读写(`readwrite`)。 ```objc // 只读声明 @property (readonly) NSString *name; // 修改为可读写 @property (readwrite, nonatomic, strong) NSString *name; ``` #### 使用KVC(键值编码) 在Objective - C里,即便属性被声明为只读,也能使用KVC来绕过只读限制进行赋值。 ```objc #import <Foundation/Foundation.h> @interface Person : NSObject @property (readonly, nonatomic, strong) NSString *name; @end @implementation Person - (instancetype)init { self = [super init]; if (self) { _name = @"default"; } return self; } @end int main(int argc, const char * argv[]) { @autoreleasepool { Person *p = [[Person alloc] init]; [p setValue:@"newName" forKey:@"name"]; NSLog(@"%@", p.name); } return 0; } ``` #### 检查JavaScript中的属性赋值 在JavaScript里,有些属性是只读的,不能直接赋值。如在iOS的Safari 10以下版本中,直接给 `style` 属性赋值会报错。可通过单独设置样式属性来避免该问题。 ```javascript let childNode = document.createElement('span'); // 不要直接赋值 style // childNode.style = "width: 20px;height: 20px;border-radius: 10px;background: #FB7299;color: #FFFFFF;display: inline-block;position: absolute;font-size: 14px;font-family: PingFangSC-Regular;line-height:20px;"; // 单独设置样式属性 childNode.style.width = '20px'; childNode.style.height = '20px'; childNode.style.borderRadius = '10px'; childNode.style.background = '#FB7299'; childNode.style.color = '#FFFFFF'; childNode.style.display = 'inline-block'; childNode.style.position = 'absolute'; childNode.style.fontSize = '14px'; childNode.style.fontFamily = 'PingFangSC-Regular'; childNode.style.lineHeight = '20px'; childNode.style.top = e.offsetY - 10 + 'px'; childNode.style.left = e.offsetX - 10 + 'px'; ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值