이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define a first
#define b second
using namespace std;
const long long INF = 1e18;
const int MOD = 1e9+7;
int n;
vector < map<int,int> > dp(1000);
vector < pair<int,int> > v(1000);
int main() {
cin >> n;
for(int i = 1; i <= n; i++)
cin >> v[i].a >> v[i].b;
map<int,int> :: iterator it;
for(int i = 1; i <= n; i++){
dp[i] = dp[i-1];
for(int j = v[i].a; j <= v[i].b; j++) {
it = dp[i-1].begin();
while(it != dp[i-1].end()) {
if(it->first >= j) break;
dp[i][j] = (dp[i][j] + it->second) % MOD;
it++;
}
//if(i != n)
dp[i][j] = (dp[i][j]+1) % MOD;
}
}
it = dp[n].begin();
int ans = 0;
while(it != dp[n].end()) {
ans = (ans+(it->second)) % MOD;
//cout << it->second << " " << it->first << endl;
it++;
}
cout << ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |