# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
94843 |
2019-01-24T12:05:06 Z |
easrui |
Pinball (JOI14_pinball) |
C++14 |
|
2 ms |
376 KB |
#include <bits/stdc++.h>
using namespace std;
const int MaxM = 210;
const long long INF = 1e15;
int M,N,sum;
long long ans=INF,cnt,DP[MaxM][MaxM][MaxM];
struct Pin {
int A,B,C,D;
} P[MaxM];
vector<int> pos;
int main()
{
//freopen("input.txt","r",stdin);
ios_base::sync_with_stdio(0),cin.tie(0);
cin >> M >> N;
for(int i=1; i<=M; i++) {
cin >> P[i].A >> P[i].B >> P[i].C >> P[i].D;
pos.push_back(P[i].C);
}
pos.push_back(1);
pos.push_back(N);
sort(pos.begin(),pos.end());
pos.erase(unique(pos.begin(),pos.end()),pos.end());
for(int i=1; i<=M; i++) {
P[i].A = lower_bound(pos.begin(),pos.end(),P[i].A)-pos.begin();
P[i].B = lower_bound(pos.begin(),pos.end(),P[i].B)-pos.begin();
P[i].C = lower_bound(pos.begin(),pos.end(),P[i].C)-pos.begin();
}
int sz = pos.size();
for(int i=0; i<=M; i++)
for(int l=0; l<sz; l++)
for(int r=l; r<sz; r++)
DP[l][r][i] = INF;
DP[0][sz-1][0] = 0;
for(int i=0; i<M; i++) {
for(int l=0; l<sz; l++) {
for(int r=l; r<sz; r++) {
DP[l][r][i+1] = min(DP[l][r][i+1],DP[l][r][i]);
bool left = P[i+1].A<=l && l<P[i+1].C, right = P[i+1].B>=r && r>P[i+1].C;
cnt = DP[l][r][i]+P[i+1].D;
if(left && right)
DP[P[i+1].C][P[i+1].C][i+1] = min(DP[P[i+1].C][P[i+1].C][i+1],cnt);
else if(left)
DP[P[i+1].C][r][i+1] = min(DP[P[i+1].C][r][i+1],cnt);
else if(right)
DP[l][P[i+1].C][i+1] = min(DP[l][P[i+1].C][i+1],cnt);
}
}
}
for(int i=0; i<sz; i++) ans = min(ans,DP[i][i][M]);
if(ans==INF) cout << -1;
else cout << ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |