Submission #131382

#TimeUsernameProblemLanguageResultExecution timeMemory
131382Just_Solve_The_ProblemPinball (JOI14_pinball)C++11
0 / 100
8 ms8312 KiB
#include <bits/stdc++.h> using namespace std; #define ll long long const int maxn = (int)1e5 + 7; const int smalln = (int)1e3 + 7; int n, m; int a[maxn], b[maxn], c[maxn], d[maxn]; ll dp[smalln][smalln]; int pos[maxn]; main() { scanf("%d %d", &m, &n); iota(pos, pos + m, 0); for (int i = 0; i < m; i++) { scanf("%d %d %d %d", &a[i], &b[i], &c[i], &d[i]); } if (n >= smalln) return 0; for (int i = 0; i < smalln; i++) { for (int j = 0; j < smalln; j++) { dp[i][j] = 1e18; } } sort(pos, pos + m, [&](const int &A, const int &B) { return a[A] < a[B]; }); for (int i = 0; i < m; i++) { if (a[pos[i]] == 1) dp[i][i] = d[pos[i]]; } if (a[pos[0]] != 1) { puts("-1"); return 0; } for (int i = 0; i < m; i++) { for (int j = 0; j <= i; j++) { for (int k = i + 1; k < m; k++) { if (pos[i] < pos[k]) { if (c[pos[i]] >= a[pos[k]] && c[pos[i]] <= b[pos[k]]) { if (b[pos[j]] >= b[pos[k]]) { dp[k][j] = min(dp[k][j], dp[i][j] + d[pos[k]]); } else { dp[k][k] = min(dp[k][k], dp[i][j] + d[pos[k]]); } } } else { if (c[pos[k]] >= a[pos[i]] && c[pos[k]] <= b[pos[i]]) { if (b[pos[j]] < b[pos[k]]) { dp[i][k] = min(dp[i][k], dp[i][j] + d[pos[k]]); } } } } } } ll ans = 1e18; for (int i = 0; i < m; i++) { if (b[pos[i]] == n) { for (int j = 0; j < m; j++) { ans = min(ans, dp[j][i]); } } } if (ans == (ll)1e18) ans = -1; printf("%lld", ans); }

Compilation message (stderr)

pinball.cpp:15:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main() {
      ^
pinball.cpp: In function 'int main()':
pinball.cpp:16:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d", &m, &n);
   ~~~~~^~~~~~~~~~~~~~~~~
pinball.cpp:19:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d %d %d", &a[i], &b[i], &c[i], &d[i]);
     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...