当前位置: 移动技术网 > IT编程>开发语言>C/C++ > 【题解】 CF1284A New Year and Naming

【题解】 CF1284A New Year and Naming

2020年01月05日  | 移动技术网IT编程  | 我要评论

斗战神仙府雷卫属性,诺基亚lumia fx800,邮政国内包裹

题目

cf1284a new year and naming

题目大意

给你两个序列,序列 \(1\) 长度为 \(n\),序列 \(2\) 长度为 \(m\)。序列中每一个元素都是字符串。\(q\) 个询问,每次问你序列 \(1\) 和序列 \(2\) 中的第 \(x\) 个元素拼起来是什么。

  • 如果 \(x = n + 1\),就是序列 \(1\) 的第一个元素和序列 \(2\) 的第 \(x\) 个元素拼起来。

思路

答案就是序列 \(1\) 的第 \(x \% n\) 个元素与序列 \(2\) 的第\(x \% m\)个元素拼起来。注意判断 \(x \% n,x \% m\)是否等于零。

\(code\)

#include<iostream>
#include<cstring>
#include<string>
#include<cstdio>
#include<algorithm>
#define maxn 21

inline void read(int &t) {
    int x=0;bool f=0;char c=getchar();
    while(c<'0'||c>'9'){if(c=='-')f=!f;c=getchar();}
    while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();}
    t=f?-x:x;
}

int n,m,q;
std::string s[maxn],t[maxn];

int main() {
    read(n),read(m);
    for(int i=1;i<=n;++i) std::cin>>s[i];
    for(int i=1;i<=m;++i) std::cin>>t[i];
    read(q);
    for(int i=1,x;i<=q;++i) {
        read(x);
        int place1=x%n,place2=x%m;
        if(place1==0) place1=n;
        if(place2==0) place2=m;
        std::cout<<s[place1]<<t[place2]<<'\n';
    }
    return 0;
}

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网