USACO16DEC LuoguP3405 Cities and States S 题解

题目传送门

题目描述
To keep his cows intellectually stimulated, Farmer John has placed a large map of the USA on the wall of his barn. Since the cows spend many hours in the barn staring at this map, they start to notice several curious patterns. For example, the cities of Flint, MI and Miami, FL share a very special relationship: the first two letters of “Flint” give the state code (“FL”) for Miami, and the first two letters of “Miami” give the state code (“MI”) for Flint.
Let us say that two cities are a “special pair” if they satisfy this property and come from different states. The cows are wondering how many special pairs of cities exist. Please help them solve this amusing geographical puzzle!
为了让奶牛在智力上受到刺激,农夫约翰在谷仓的墙上放了一张美国地图。由于奶牛在谷仓里花了很多时间盯着这张地图,他们开始注意到一些奇怪的关系。例如,城市Flint,在MI省,或者Miami在FL省,他们有一种特殊的关系:“Flint”市前两个字母就是“FL”省,迈阿密前两个字母是“MI”省。
让我们说,两个城市是一个“特殊的一对”,如果他们满足这个属性,来自不同的省。奶牛想知道有多少特殊的城市存在。请帮助他们解决这个有趣的地理难题!

输入格式
The first line of input contains N N N ( 1 ≤ N ≤ 200 , 000 1 \leq N \leq 200,000 1N200,000 ), the number ofcities on the map.
The next N N N lines each contain two strings: the name of a city (a string of at least 2 2 2 and at most 10 10 10 uppercase letters), and its two-letter state code (a string of 2 2 2 uppercase letters). Note that the state code may be something like ZQ, which is not an actual USA state. Multiple cities with the same name can exist, but they will be in different states.
输入的第一行包含(),地图上的城市数量。
下一行包含两个字符串:一个城市的名称(字符串至少 2 2 2 个最多 10 10 10 个大写字母),和它的两个字母的州代码(一串 2 2 2 个大写字母)。注意状态代码可能像ZQ,这并不是一个真正的美国。同一名称的多个城市可以存在,但它们将处于不同的州。

输出格式
Please output the number of special pairs of cities.
请输出特殊城市对数。

解析

我们可以利用进制的方法将每个两位字符串压缩成一个数字,用 f i , j f_{i,j} fi,j 代表城市前两个字母为 i i i ,州为 j j j 的城市的个数,不难发现, f i , j f_{i,j} fi,j f j , i f_{j,i} fj,i 互相为“特殊的一对”。

代码:

#include<cstdio>
#include<cstring>
#include<iostream>
#define MOD 1000039
using namespace std;
inline int read(){
    
    
	char c=getchar();
	int sum=0,flag=0;
	while((c<'0'||c>'9')&&c!='-') c=getchar();
	if(c=='-')
		c=getchar(),flag=1;
	while('0'<=c&&c<='9'){
    
    
		sum=(sum<<1)+(sum<<3)+(c^48);
		c=getchar();
	}
	if(flag) return -sum;
	return sum;
}
int n,ans;
char s1[39],s2[39];
int f[1039][1039];
int c1,c2,d1,d2,x,y;
int main(){
    
    
    cin>>n;
	for(int i=1;i<=n;i++){
    
    
		cin>>s1>>s2;
		c1=s1[0]-'A';
		c2=s1[1]-'A';
		d1=s2[0]-'A';
		d2=s2[1]-'A';
		x=c1*27+c2;
		y=d1*27+d2;
		if(x!=y){
    
    
			ans+=f[y][x];
			f[x][y]++;
		}
	}
	cout<<ans;
	return 0;
}

猜你喜欢

转载自blog.csdn.net/jiangtaizhe/article/details/108926648
今日推荐