Concatenation of Languages
Input File: Standard Input
Output: Standard Output
A language is a set of strings. And the concatenation of two languages is the set of all strings that are formed by concatenating the strings of the second language at the end of the strings of the first language.
For example, if we have two language A and B such that:
A = {cat, dog, mouse}
B = {rat, bat}
The concatenation of A and B would be:
C = {catrat, catbat, dograt, dogbat, mouserat, mousebat}
Given two languages your task is only to count the number of strings in the concatenation of the two languages.
For each of the test cases you need to print one line of output. The output for each test case starts with the serial number of the test case, followed by the number of strings in the concatenation of the second language after the first language.
2 3 2 cat dog mouse rat bat 1 1 abc cab |
Case 1: 6 Case 2: 1
|
解题思路:STL中的set,有去重的功能,注意输入的是句子,可能有空格,所以要用gets读取。
#include <stdio.h> #include <string.h> #include <string> #include <set> #include <iostream> using namespace std; const int N = 1505; const int M = 105; char p[N][M], q[N][M], str[N]; int main(){ set<string> vec; int cas = 1, n, m, sum, t; scanf("%d", &sum); while (sum--) { memset(p, 0, sizeof(p)); memset(q, 0, sizeof(q)); scanf("%d%d%*c", &n, &m); vec.clear(); for (int i = 0; i < n; i++) gets(p[i]); for (int i = 0; i < m; i++) gets(q[i]); for (int i = 0; i < n; i++) { t = strlen(p[i]); for (int j = 0; j < m; j++) { strcpy(str, p[i]); strcpy(str + t, q[j]); vec.insert(str); } } cout << "Case " << cas++ << ": " << vec.size() << endl; } return 0; }