题意:先是给出N本书,,从上到下的放着。
现在继续在这些书上面放,
1、放一本书
2、把上面K本书翻转一下
思路:用一个双端队列,,今天才在网上看了一点。。用这个思路简单粗暴啊
如果队列中超过了K个,则下面的就出队。。
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
#define N 200001
char ans[N][5];
int nans;
char q[N*2][5];
int tail,head;
void put()
{
int i;
cout<<"***************"<<endl;
cout<<head<<' '<<tail<<' '<<tail-head+1<<endl;
for (i=tail;i>=head;i--)
cout<<q[i]<<endl;
cout<<"*********"<<endl;
}
int main()
{
freopen("in.txt","r",stdin);
int i,j,k;
int n,m;
int ok;
char cur[21];
while (scanf("%d%d%d",&n,&m,&k)!=EOF)
{
for (i=n;i;i--)
{
scanf("%s",q[N+i]);
}
head=N+1;
tail=N+n;
nans=0;
while (tail-head>=k)
{
strcpy(ans[nans],q[head]);
nans++;
head++;
}
ok=true;
while (m--)
{
scanf("%s",cur);
if (cur[0]=='A')
{
cur[strlen(cur)-1]='\0';
// cout<<ok<<endl;
// cout<<cur+4<<endl;
if (ok)
{
// put();
tail++;
strcpy(q[tail],cur+4);
// cout<<tail<<' '<<q[tail]<<endl;
while (tail-head>=k)
{
strcpy(ans[nans],q[head]);
nans++;
head++;
}
// put();
}
else
{
head--;
strcpy(q[head],cur+4);
while (tail-head>=k)
{
strcpy(ans[nans],q[tail]);
nans++;
tail--;
}
}
}
else
{
ok=ok?false:true;
}
// put();
}
while (head<=tail)
{
if (ok)
{
strcpy(ans[nans],q[head]);
head++;
nans++;
}
else
{
strcpy(ans[nans],q[tail]);
tail--;
nans++;
}
}
//cout<<nans<<endl;
for (i=nans-1;i>=0;i--)
{
printf("%s\n",ans[i]);
}
printf("\n");
}
return 0;
}
论程序的阿卡林化
Time Limit: 1000 ms Memory Limit: 65535 kB Solved: 79 Tried: 605
Submit
Status
Best Solution
Back
Description
又有讨厌的熊孩子往阿卡林的桌子上乱堆东西了(“什么?那桌子旁边有人?”)。
现在桌子上堆了整整n本书呢,反正也没什么事做,我们就接着玩儿吧。
下面我告诉你两种操作:
一种是直接往书堆顶部再放一本书。
另一种是把最顶端的K本书整个翻转过来(如果桌子上一共都不够K本书的话,就直接把整个书堆倒过来好了)。
第一种操作写作ADD(S),S是放的书的名字。
第二种操作写作ROTATE。
在玩儿的过程中,书的总数不会超过40000,所有书的名字都由非空的大写字母组成,长度不超过3,注意书名可能会有重复。
Input
输入文件包括多组数据,每组数据的第一行包括三个整数N,M,K (0 <= N <= 40000; 0 <= M <= 100000; 0 <= K <= 40000). 接下来N行从上往下给出了N本书的名字。接下来M行,每行给出一种操作。
Output
所有操作完成后,从上到下依次输出每本书的书名。
相邻两组数据中间请输出一个空行。
Sample Input
2 3 2
A
B
ADD(C)
ROTATE
ADD(D)
Sample Output
D
A
C
B