# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
962739 |
2024-04-14T07:44:41 Z |
SuPythony |
Boat (APIO16_boat) |
C++17 |
|
2 ms |
348 KB |
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
const int MOD=1e9+7;
int n; cin>>n;
vector<ll> a(n+1), b(n+1);
for (int i=1; i<=n; i++) {
cin>>a[i]>>b[i];
}
vector<vector<ll>> dp(n+1, vector<ll>(2,0));
dp[1][1]=1;
dp[1][0]=1;
for (int i=2; i<=n; i++) {
for (int j=1; j<i; j++) {
dp[i][0]=(dp[i][0]+dp[j][0]+dp[j][1])%MOD;
dp[i][1]=(dp[i][1]+dp[j][0])%MOD;
if (a[i]>a[j]) {
dp[i][1]=(dp[i][1]+dp[j][1])%MOD;
}
}
}
cout<<(dp[n][1]+dp[n][0])%MOD;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |