A. Friends or Not

来源:互联网 发布:android加载数据动画 编辑:程序博客网 时间:2024/06/05 20:46

time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Polycarpus has a hobby — he develops an unusual social network. His work is almost completed, and there is only one more module to implement — the module which determines friends. Oh yes, in this social network one won't have to add friends manually! Pairs of friends are deduced in the following way. Let's assume that user A sent user B a message at time t1, and user B sent user A a message at time t2. If 0 < t2 - t1 ≤ d, then user B's message was an answer to user A's one. Users A and B are considered to be friends if Aanswered at least one B's message or B answered at least one A's message.

You are given the log of messages in chronological order and a number d. Find all pairs of users who will be considered to be friends.

Input

The first line of the input contains two integers n and d (1 ≤ n, d ≤ 1000). The next n lines contain the messages log. The i-th line contains one line of the log formatted as "Ai Bi ti" (without the quotes), which means that user Ai sent a message to user Bi at time ti (1 ≤ i ≤ n). Ai and Bi are non-empty strings at most 20 characters long, consisting of lowercase letters ('a' ... 'z'), and ti is an integer (0 ≤ ti ≤ 10000). It is guaranteed that the lines are given in non-decreasing order of ti's and that no user sent a message to himself. The elements in the lines are separated by single spaces.

Output

In the first line print integer k — the number of pairs of friends. In the next k lines print pairs of friends as "Ai Bi" (without the quotes). You can print users in pairs and the pairs themselves in any order. Each pair must be printed exactly once.

Sample test(s)
input
4 1vasya petya 1petya vasya 2anya ivan 2ivan anya 4
output
1petya vasya
input
1 1000a b 0
output
0
Note

In the first sample test case Vasya and Petya are friends because their messages' sending times are one second apart. Anya and Ivan are not, because their messages' sending times differ by more than one second.


解题说明:题目的意思是通过判断两个人之间应答时间差来判断两个人是否是好友关系。用数组a,b表示两个人,用c,d两个数组存储好友关系,获取时间之后相减判断范围即可。


#include <iostream>#include<algorithm>#include<cstdio>#include<cmath>#include<cstring>#include<cstdlib>using namespace std;int main(){int i, j, p, n, T, k = 0, flag;char a[1001][25], b[1001][25], c[1001][25], d[1001][25];int t[1001];scanf("%d %d", &n, &T);for (i = 0; i < n; i++){scanf("%s %s %d", a[i], b[i], &t[i]);}for (i = 0; i < n - 1; i++){for (j = i + 1; j < n && t[j] - t[i] <= T; j++){if ((t[j] - t[i]) && !(strcmp(a[i], b[j])) && !(strcmp(b[i], a[j]))) {flag = 1;for (p = 0; p < k; p++){if ((!(strcmp(a[i], c[p])) && !(strcmp(b[i], d[p]))) ||(!(strcmp(a[i], d[p])) && !(strcmp(b[i], c[p])))) {flag = 0;break;}}if (flag) {strcpy(c[k], a[i]);strcpy(d[k], b[i]);k++;}break;}}}printf("%d\n", k);for (i = 0; i < k; i++){printf("%s %s\n", c[i], d[i]);}return 0;}


原创粉丝点击