codeforces 159A Friends or Not

本文介绍了一种基于消息日志确定用户间友谊关系的算法。通过设定时间阈值来判断用户之间的互动是否构成相互回应,从而形成朋友关系。文章提供了一个具体的实现示例,包括输入输出格式和算法流程。
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 1001
using 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
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值