1034. Head of a Gang(30)(및 조회 또는 DFS)

4400 단어 PATA수색하다
1034. Head of a Gang (30)
시간 제한
100 ms
메모리 제한
65536 kB
코드 길이 제한
16000 B
판정 절차
Standard
작자
CHEN, Yue
One way that the police finds the head of a gang is to check people's phone calls. If there is a phone call between A and B, we say that A and B is related. The weight of a relation is defined to be the total time length of all the phone calls made between the two persons. A "Gang"is a cluster of more than 2 persons who are related to each other with total relation weight being greater than a given threshold K. In each gang, the one with maximum total weight is the head. Now given a list of phone calls, you are supposed to find the gangs and the heads.
Input Specification:
Each input file contains one test case. For each case, the first line contains two positive numbers N and K (both less than or equal to 1000), the number of phone calls and the weight threthold, respectively. Then N lines follow, each in the following format:
Name1 Name2 Time
where Name1 and Name2 are the names of people at the two ends of the call, and Time is the length of the call. A name is a string of three capital letters chosen from A-Z. A time length is a positive integer which is no more than 1000 minutes.
Output Specification:
For each test case, first print in a line the total number of gangs. Then for each gang, print in a line the name of the head and the total number of the members. It is guaranteed that the head is unique for each gang. The output must be sorted according to the alphabetical order of the names of the heads.
Sample Input 1:
8 59
AAA BBB 10
BBB AAA 20
AAA CCC 40
DDD EEE 5
EEE DDD 70
FFF GGG 30
GGG HHH 20
HHH FFF 10

Sample Output 1:
2
AAA 3
GGG 3

Sample Input 2:
8 70
AAA BBB 10
BBB AAA 20
AAA CCC 40
DDD EEE 5
EEE DDD 70
FFF GGG 30
GGG HHH 20
HHH FFF 10

Sample Output 2:
0

제목: n조의 관계를 정하고 각 조의 관계는 두 사람의 성명과 그들의 통화 시간을 제시하며 몇 개의'gang'이 있는지 묻는다. 이른바'gang'은 서로 연결된 사람이 2명을 초과하고 그들의 전체 통화 시간이 정해진 k치를 초과하여 그들의 리더를 제시하는 것을 말한다.
문제풀이: 이 문제는 DFS로 만들었습니다. 먼저 그림을 작성한 다음에 각 점의 dfs에 따라 상술한 조건에 부합되는지 확인합니다. 만약에 부합되면 답안에 넣고 마지막에 이름에 따라 순서를 정하는 것을 잊지 마세요.
아니면 합쳐서 모아도 돼요.
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;
const int N = 30 * 30 * 30;
int tm[N], cnt[N];
vector V[N];
bool vis[N];

void dfs(int& id, int& num, int& total_time, int cur) {
    if (tm[id] < tm[cur]) id = cur;
    vis[cur] = true;
    num++;
    total_time += tm[cur];

    for (int i = 0; i < V[cur].size(); ++i)
        if (vis[V[cur][i]] == false)
            dfs(id, num, total_time, V[cur][i]);
}

bool cmp(const pair& p1, const pair& p2) {
    return p1.first < p2.first;
}

int get_id(const string & str) {
    return (str[0] - 'A') * 26 * 26 + (str[1] - 'A') * 26 + (str[2] - 'A');
}

void show_string(const int id) {
    printf("%c%c%c ", 'A' + id / 26 / 26, 'A' + (id / 26) % 26, 'A' + (id % 26));
}

int main() {
    int n, k;

    cin >> n >> k;
    int total = 0;
    while (n--) {
        string name1, name2;
        int time;
        cin >> name1 >> name2 >> time;
        int id1 = get_id(name1);
        int id2 = get_id(name2);
        V[id1].push_back(id2);
        V[id2].push_back(id1);
        tm[id1] += time, tm[id2] += time;
        cnt[id1]++, cnt[id2]++;
    }

    memset(vis, false, sizeof(vis));
    vector > ans;
    for (int i = 0; i < 26 * 26 * 26; ++i) {
        if (vis[i] == false) {
            int id = 26 * 26 * 26, num = 0, total_time = 0;
            dfs(id, num, total_time, i);
            if (num > 2 && total_time > k * 2)
                ans.push_back(make_pair(id, num));
        }
    }

    cout << ans.size() << endl;
    sort(ans.begin(), ans.end());
    for (int i = 0; i < ans.size(); ++i) {
        show_string(ans[i].first);
        cout << ans[i].second << endl;
    }

    return 0;
}

좋은 웹페이지 즐겨찾기