# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
205091 | Leonardo_Paes | Fish (IOI08_fish) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
typedef pair<int,int> pii;
#define f first
#define s second
const int maxn = 5e5+10, maxk = 30;
int qtd[maxn][maxk], mark[maxk];
int main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
int n, k, m;
cin >> n >> k >> m;
vector<pii> v(n+1);
vector<int> ans(n+1);
for(int i=1; i<=n; i++){
cin >> v[i].f >> v[i].s;
}
sort(v.begin(), v.end());
for(int i=1; i<=n; i++){
ans[i] = 1;
qtd[i][v[i].s]++;
memset(mark, 0, sizeof mark);
mark[v[i].s] = 1;
for(int j=1; j<i; j++){
if(!mark[v[j].s] and v[i].f >= v[j].f + v[j].f){
mark[v[j].s] = 1;
ans[i] = (ans[i] + ans[j] - qtd[i][v[i].s] - 1 + m)%m;
for(int q=1; q<=k; q++){
qtd[i][q] += qtd[j][q];
}
}
}
//cout << ans[i] << " " << qtd[i][v[i].s] << "\n";
}
cout << ans[n] << "\n";
return 0;
}