只能使用红色的那句话,否则就会WA,mark一下,以后学习
#include
#include
#include
using namespace std;
struct Magic
{
char Name[25];
char Content[81];
}Magics[100000];
//#defineLOCAL
int main()
{
#ifdef LOCAL
freopen("data.in","r",stdin);
freopen("data.out","w",stdout);
#endif
char cInput[150];
int index=0;
while(cin.getline(cInput,150))
{
if(strcmp(cInput,"@END@")==0)
break;
int tmpIndex=0;
char *p=cInput;
while(*p!=']')
{
Magics[index].Name[tmpIndex]=*p;
p++;
tmpIndex++;
}
Magics[index].Name[tmpIndex++]=']';
p++;
Magics[index].Name[tmpIndex]='\0';
p++;
tmpIndex=0;
while(*p)
{
Magics[index].Content[tmpIndex]=*p;
p++;
tmpIndex++;
}
Magics[index].Content[tmpIndex]='\0';
index++;
}
int num;
cin>>num;
cin.ignore();
while(num>0)
{
num--;
cin.getline(cInput,150);
if(cInput[0]=='[')
{
bool isTrue=true;
for(int i=0;
i
推荐阅读
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ACM|HDU 5322 Hope (CDQ分治+NTT)
- 牛客算法周周练15——A、B
- Codeforces Round #609 (Div. 2)——C. Long Beautiful Integer(思维)
- FZU - 2107题解
- ACM OJ 2036 多边形面积计算
- #|【牛客】牛客练习赛67-E-牛妹游历城市——位运算优化
- ACM|回文树(自动机)(练习和总结)
- acm|扩展欧几里德算法(附证明)
- ACM|[dsu] codeforces 375D. Tree and Queries
- ACM|codeforces 732-D. Exams (二分)