codeforces 159A Friends or Not

来源:互联网 发布:linux内核架构 编辑:程序博客网 时间:2024/06/04 18:26
A. Friends or Not
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 A answered 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). Aiand 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.


简单模拟 

#include<iostream>#include<string>#define MAXN 1001using namespace std;int main(){int n, dx;cin >> n >> dx;string a[MAXN],b[MAXN],c[MAXN],d[MAXN];int t[MAXN];int sum = 0;for (int i = 0; i<n; i++)cin >> a[i] >> b[i] >> t[i];for (int i = 0; i<n - 1; i++)for (int j = i + 1; j<n; j++)if (t[j] - t[i]>0 && t[j] - t[i] <= dx)if (a[i] == b[j] && b[i] == a[j]){int flat = 0;for (int k = 0; k < sum; k++)if (a[i] == c[k] && b[i] == d[k] || a[i] == d[k] && b[i] == c[k]){flat = 1;break;}if (!flat){c[sum] = a[i];d[sum] = b[i];sum++;}}cout << sum << endl;for (int i = 0; i < sum; i++){cout << c[i] << " " <<d[i] << endl;}}


1 0
原创粉丝点击