码迷,mamicode.com
首页 > 其他好文 > 详细

Comet OJ - Contest #12 补题

时间:2019-10-16 17:46:13      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:binary   orm   技术   setting   mat   c++   turn   problem   close   

A.Competitive Problem Setting

题意:比较多个字符串的前三位,如果全部不同则输出Yes 否则为 No.
思路:截取前三位,放入set中进行比较即可
技术图片
#include <bits/stdc++.h>
typedef long long ll;
const int maxn = 1e5+7;
using namespace std;
string s,s1;
set<string>ss; 
int main(){
    int T;
    cin>>T;
    while(T--){
        int n;
        cin>>n;
        ss.clear();
        int flag = 0;
        for(int i=0;i<n;i++){
            cin>>s;
            s1 = s.substr(0,3);
            if(flag==0&&ss.count(s1)){
                flag = 1;
            }
            else ss.insert(s1);
        }
        if(flag) cout<<"No"<<endl;
        else cout<<"Yes"<<endl;
    }
    return 0;
} 
View Code

 

B.Binary Matrix Transform
 

 

Comet OJ - Contest #12 补题

标签:binary   orm   技术   setting   mat   c++   turn   problem   close   

原文地址:https://www.cnblogs.com/Tianwell/p/11686959.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!