【无标题】

简介: love you_牛客竞赛语法入门班数组模拟、枚举、贪心习题 (nowcoder.com)

10-I love you_牛客竞赛语法入门班数组模拟、枚举、贪心习题 (nowcoder.com)

1.3.png

#include<iostream>
using namespace std;
char c,s[8]={'i','l','o','v','e','y','o','u'};
int a[9]={0};
int main(){
    a[0]=1;
    while(cin>>c){
        for(int i=0;i<8;i++){
            if(c==s[i]||c==s[i]-32){
                a[i+1]=(a[i+1]+a[i])%20010905;
            }
        }
    }
    cout<<a[8];
    return 0;
}

1009-Tic-Tac-Toe_牛客竞赛语法入门班数组模拟、枚举、贪心习题 (nowcoder.com)

1.4.png

1.4.png

#include<bits/stdc++.h>
using namespace std;
void solve(){
    bool a=false,b=false;
    string s[3];
    cin>>s[0]>>s[1]>>s[2];
    for(int i=0;i<=2;i++){
        if(s[i][0]==s[i][1]&&s[i][2]==s[i][1]&&'A'==s[i][1]) a=true;
        if(s[i][0]==s[i][1]&&s[i][2]==s[i][1]&&'B'==s[i][1]) b=true;
    }
    for(int i=0;i<=2;i++){
        if(s[0][i]==s[1][i]&&s[2][i]==s[1][i]&&'A'==s[0][i]) a=true;
        if(s[0][i]==s[1][i]&&s[2][i]==s[1][i]&&'B'==s[0][i]) b=true;
    }
    if(s[0][0]==s[1][1]&&s[1][1]==s[2][2]){
        if(s[1][1]=='A') a=true;
        else if(s[1][1]=='B') b=true;
    }
    if(s[0][2]==s[1][1]&&s[1][1]==s[2][0]){
        if(s[1][1]=='A') a=true;
        else if(s[1][1]=='B')b=true;
    }
    if(a&&b) cout<<"invalid"<<"\n";
    else if(a) cout<<"Yes"<<"\n";
    else if(b) cout<<"No"<<"\n";
    else cout<<"draw"<<"\n";
}
int main(){
    int t;
    cin>>t;
    while(t--){
        solve();
    }
    return 0;
}

Code over!

相关文章
|
2月前
|
搜索推荐 索引 SEO
HTML 标题1
HTML标题通过&lt;h1&gt;至&lt;h6&gt;标签定义,&lt;h1&gt;为最大,&lt;h6&gt;为最小。浏览器自动在标题前后添加空行。标题对网页结构和搜索引擎优化至关重要,应按重要性顺序使用,以帮助用户快速浏览页面内容。
HTML 标题2
HTML标题通过&lt;h1&gt;到&lt;h6&gt;标签定义,其中&lt;h1&gt;为最大标题,&lt;h6&gt;为最小标题。&lt;hr&gt;标签用于创建水平线,分隔页面内容。注释通过&lt;!-- --&gt;添加,提高代码可读性,浏览器不显示。
|
2月前
|
存储 前端开发
【无标题】
【无标题】
18 0
|
7月前
|
搜索推荐 前端开发 UED
HTML 标题
HTML 标题
|
算法 C++
无标题。。。
无标题。。。
|
JavaScript 前端开发
v-text和v-html
v-text和v-html
173 0
|
Web App开发 缓存 搜索推荐
|
应用服务中间件 nginx NoSQL
Title comes here
asdasdadawdwadaw
1485 0