Submission #39813

#TimeUsernameProblemLanguageResultExecution timeMemory
3981314kgBoat (APIO16_boat)C++11
9 / 100
8 ms9172 KiB
#include <stdio.h> #include <set> #include <algorithm> #include <map> #define N 501 #define INF 1000000000 #define MOD 1000000007 using namespace std; int n, r_len; long long dp[N][N * 4]; pair<int, int> in[N], r[N * 4]; set<int> S; map<int, int> M; void r_push(int x, int y) { if (x > y) return; r[++r_len] = { x,y }; if (x == y) M[x] = r_len; } int main() { int path = INF; long long sum; scanf("%d", &n); for (int i = 1; i <= n; i++) { scanf("%d %d", &in[i].first, &in[i].second); S.insert(in[i].first), S.insert(in[i].second); } for (auto i : S) r_push(path + 1, i - 1), r_push(i, i), path = i; for (int i = 1; i <= n; i++) in[i] = { M[in[i].first],M[in[i].second] }; dp[0][0] = 1; for (int i = 1; i <= n; i++) { sum = dp[i][0] = 1; for (int j = 1; j <= r_len; j++) { dp[i][j] = dp[i - 1][j]; if (in[i].first <= j && j <= in[i].second) { dp[i][j] += sum * (long long)(r[j].second - r[j].first + 1); dp[i][j] %= MOD; } sum = (sum + dp[i - 1][j]) % MOD; } } sum = 0; for (int i = 1; i <= r_len; i++) sum = (sum + dp[n][i]) % MOD; printf("%lld", sum); }

Compilation message (stderr)

boat.cpp: In function 'int main()':
boat.cpp:25:17: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
                 ^
boat.cpp:27:46: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d", &in[i].first, &in[i].second);
                                              ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...