# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
184088 | 2020-01-10T13:00:54 Z | dndhk | Boat (APIO16_boat) | C++14 | 1815 ms | 6520 KB |
#include <bits/stdc++.h> #define all(v) (v).begin(), (v).end() #define sortv(v) sort(all(v)) #define uniqv(v) (v).erase(unique(all(v)), (v).end()) #define pb push_back #define FI first #define SE second #define lb lower_bound #define ub upper_bound #define test 1 #define TEST if(test) using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; typedef vector<int> vi; const ll MOD = 1000000007; const int INF = 2e9; const ll INFLL = 1e18; const int MAX_N = 500; int N, M; int a[MAX_N+1], b[MAX_N+1]; vector<int> v1; vector<ll> v; map<int, int> mp; void input(){ scanf("%d", &N); for(int i=1 ;i<=N; i++){ scanf("%d%d", &a[i], &b[i]); b[i]++; v1.pb(a[i]); v1.pb(b[i]); } sort(v1.begin(), v1.end()); v1.erase(unique(v1.begin(), v1.end()), v1.end()); sort(v1.begin(), v1.end()); v.pb(1LL); for(int i=0; i<v1.size()-1; i++){ mp[v1[i]] = v.size(); v.pb(v1[i+1]-v1[i]); }mp[v1.back()] = v.size(); for(int i=1; i<=N; i++){ a[i] = mp[a[i]]; b[i] = mp[b[i]]-1; } M = v.size()-1; } ll multi(ll x, ll y){ if(y==0){ return 1LL; }if(y==1){ return x%MOD; } ll m = multi(x, y/2); if(y%2){ return ((m*m%MOD)*x)%MOD; } return (m*m)%MOD; } ll inv[MAX_N+1]; ll dp[MAX_N+1][MAX_N*2+1]; ll dp2[MAX_N+1][MAX_N+1]; void solve(){ for(int i=1; i<=N; i++){ inv[i] = multi((ll)i, MOD-2); } for(int i=0; i<=M; i++) dp[0][i] = 1LL; for(int i=1; i<=N; i++) dp[i][0] = 1LL; for(int k=1; k<=M; k++){ for(int i=1; i<=N; i++){ dp2[i][1] = dp2[i-1][1]; if(a[i]<=k && k<=b[i]) dp2[i][1] = (dp2[i][1] + dp[i-1][k-1]) % MOD; dp[i][k]=dp2[i][1]; for(int j=2; j<=N; j++){ dp2[i][j] = 0LL; if(a[i]<=k && k<=b[i]) dp2[i][j] = (dp2[i-1][j-1] * (max(0LL, v[k]-(ll)(j-1)))%MOD) * inv[j] % MOD; dp2[i][j] = (dp2[i][j] + dp2[i-1][j]) % MOD; dp[i][k] = (dp[i][k] + dp2[i][j]) % MOD; } dp[i][k] = (dp[i][k] + dp[i][k-1]) % MOD; } } } int main(){ input(); solve(); cout<<(dp[N][M]+MOD-1) % MOD; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1434 ms | 6504 KB | Output is correct |
2 | Correct | 1423 ms | 6520 KB | Output is correct |
3 | Correct | 1415 ms | 6280 KB | Output is correct |
4 | Correct | 1463 ms | 6308 KB | Output is correct |
5 | Correct | 1487 ms | 6392 KB | Output is correct |
6 | Correct | 1387 ms | 6336 KB | Output is correct |
7 | Correct | 1402 ms | 6348 KB | Output is correct |
8 | Correct | 1397 ms | 6392 KB | Output is correct |
9 | Correct | 1403 ms | 6468 KB | Output is correct |
10 | Correct | 1400 ms | 6364 KB | Output is correct |
11 | Correct | 1393 ms | 6240 KB | Output is correct |
12 | Correct | 1461 ms | 6400 KB | Output is correct |
13 | Correct | 1657 ms | 6440 KB | Output is correct |
14 | Correct | 1416 ms | 6428 KB | Output is correct |
15 | Correct | 1460 ms | 6452 KB | Output is correct |
16 | Correct | 258 ms | 5060 KB | Output is correct |
17 | Correct | 265 ms | 5112 KB | Output is correct |
18 | Correct | 274 ms | 5072 KB | Output is correct |
19 | Correct | 289 ms | 5240 KB | Output is correct |
20 | Correct | 273 ms | 5104 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1434 ms | 6504 KB | Output is correct |
2 | Correct | 1423 ms | 6520 KB | Output is correct |
3 | Correct | 1415 ms | 6280 KB | Output is correct |
4 | Correct | 1463 ms | 6308 KB | Output is correct |
5 | Correct | 1487 ms | 6392 KB | Output is correct |
6 | Correct | 1387 ms | 6336 KB | Output is correct |
7 | Correct | 1402 ms | 6348 KB | Output is correct |
8 | Correct | 1397 ms | 6392 KB | Output is correct |
9 | Correct | 1403 ms | 6468 KB | Output is correct |
10 | Correct | 1400 ms | 6364 KB | Output is correct |
11 | Correct | 1393 ms | 6240 KB | Output is correct |
12 | Correct | 1461 ms | 6400 KB | Output is correct |
13 | Correct | 1657 ms | 6440 KB | Output is correct |
14 | Correct | 1416 ms | 6428 KB | Output is correct |
15 | Correct | 1460 ms | 6452 KB | Output is correct |
16 | Correct | 258 ms | 5060 KB | Output is correct |
17 | Correct | 265 ms | 5112 KB | Output is correct |
18 | Correct | 274 ms | 5072 KB | Output is correct |
19 | Correct | 289 ms | 5240 KB | Output is correct |
20 | Correct | 273 ms | 5104 KB | Output is correct |
21 | Incorrect | 1815 ms | 6416 KB | Output isn't correct |
22 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 19 ms | 1272 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1434 ms | 6504 KB | Output is correct |
2 | Correct | 1423 ms | 6520 KB | Output is correct |
3 | Correct | 1415 ms | 6280 KB | Output is correct |
4 | Correct | 1463 ms | 6308 KB | Output is correct |
5 | Correct | 1487 ms | 6392 KB | Output is correct |
6 | Correct | 1387 ms | 6336 KB | Output is correct |
7 | Correct | 1402 ms | 6348 KB | Output is correct |
8 | Correct | 1397 ms | 6392 KB | Output is correct |
9 | Correct | 1403 ms | 6468 KB | Output is correct |
10 | Correct | 1400 ms | 6364 KB | Output is correct |
11 | Correct | 1393 ms | 6240 KB | Output is correct |
12 | Correct | 1461 ms | 6400 KB | Output is correct |
13 | Correct | 1657 ms | 6440 KB | Output is correct |
14 | Correct | 1416 ms | 6428 KB | Output is correct |
15 | Correct | 1460 ms | 6452 KB | Output is correct |
16 | Correct | 258 ms | 5060 KB | Output is correct |
17 | Correct | 265 ms | 5112 KB | Output is correct |
18 | Correct | 274 ms | 5072 KB | Output is correct |
19 | Correct | 289 ms | 5240 KB | Output is correct |
20 | Correct | 273 ms | 5104 KB | Output is correct |
21 | Incorrect | 1815 ms | 6416 KB | Output isn't correct |
22 | Halted | 0 ms | 0 KB | - |