题解:
考试的时候用的O(n)的遍历和加法原理和乘法原理然而用乘法原理求组合的情况比较复杂,有许多的重叠情况,就WA掉了
既然乘法原理比较危险,那就只用加法原理
考虑一个旅店前面的色调相同的旅店,如果前面的旅店和当前的旅店消费都小于规定值
那么这两个旅店间的所有色调相同的旅店都可以和前一个旅店组合,将情况加起来就行了
最后用O(n)的虚幻每个点走一次就可以,也可以保证没有重叠情况
代码:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#include<vector>
#include<queue>
#include<climits>
#define MAXA 200005
using namespace std;
struct Rx
{
int Color,Least;
} Hotel[MAXA];
int n,k,p,Ans,Last[MAXA],Sum[MAXA],Front[MAXA],now;
int main()
{
scanf("%d %d %d",&n,&k,&p);
for(int i=1; i<=n; i++)
scanf("%d %d",&Hotel[i].Color,&Hotel[i].Least);
for(int i=1; i<=n; i++)
{
if(Hotel[i].Least <= p)
now = i;
if(now >= Last[Hotel[i].Color])
Sum[Hotel[i].Color] = Front[Hotel[i].Color];
Last[Hotel[i].Color] = i;
Ans += Sum[Hotel[i].Color];
Front[Hotel[i].Color]++;
}
cout << Ans;
}