【題解】 CF1284A New Year and Naming

題目

CF1284A New Year and Namingios

題目大意

給你兩個序列,序列 \(1\) 長度爲 \(n\),序列 \(2\) 長度爲 \(m\)。序列中每個元素都是字符串。\(q\) 個詢問,每次問你序列 \(1\) 和序列 \(2\) 中的第 \(x\) 個元素拼起來是什麼。spa

  • 若是 \(x = n + 1\),就是序列 \(1\) 的第一個元素和序列 \(2\) 的第 \(x\) 個元素拼起來。

思路

答案就是序列 \(1\) 的第 \(x \% n\) 個元素與序列 \(2\) 的第\(x \% m\)個元素拼起來。注意判斷 \(x \% n,x \% m\)是否等於零。code

\(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;
}
相關文章
相關標籤/搜索