CSP题解|202305-1 重复局面|100分

#include <bits/stdc++.h>
using namespace std;

int main(){
	int n;cin>>n;
	map<string,int>mp;
	while(n--){
		//n为步数
		int row=8;
		string s="";
		while(row--){
			string temp;
			cin>>temp;
			s+=temp;	
		} 
		if(mp.find(s)==mp.end()){
			cout<<1<<endl;
			mp[s]=1;
		}else{
			mp[s]++;
			cout<<mp[s]<<endl;
		}
	}
} 

13行本来用getline,一直0分,换成cin就AC了...

全部评论

相关推荐

offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务