比赛 20120907 评测结果 AAAAAAAAAA
题目名称 吉他 最终得分 100
用户昵称 Makazeu 运行时间 0.499 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2012-09-07 20:09:24
显示代码纯文本
#include <cstdio>
#include <cstdlib>
#include <stack>
#include <algorithm>
using namespace std;
stack<int> Git[7];
int N,P,x,y,ans=0;

int main()
{
	freopen("gitara.in","r",stdin);
	freopen("gitara.out","w",stdout);
	scanf("%d %d\n",&N,&P);
	for(int i=1;i<=N;i++)
	{
		scanf("%d %d\n",&x,&y);
		while(Git[x].size())
		{
			if(Git[x].top()==y) goto End;
			if(Git[x].top()<y) break;
			Git[x].pop(); ans++;
		}
		Git[x].push(y);ans++;
		End:;
	}
	printf("%d\n",ans);
	return 0;
}