제출 #736399

#제출 시각아이디문제언어결과실행 시간메모리
736399cdjs1432K blocks (IZhO14_blocks)C11
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; int a[100005]; int dp[100005][102]; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); memset(dp,0x3f,sizeof(dp)); int n, k; cin >> n >> k; int maxx = 0; for (int i=1; i<=n; i++) { cin >> a[i]; dp[i][1] = maxx = max(a[i], maxx); } for (int i=2; i<=k; i++) { stack<pair<int, int>> s; for (int j=1; j<=n; j++) { int best = dp[j-1][i-1]; while (!s.empty() && a[s.top().second] <= a[j]) { best = min(best, s.top().first); s.pop(); } if (s.empty()) dp[j][i] = best + a[j]; else dp[j][i] = min(best + a[j], dp[s.top().second][i-1]); s.push({best, j}); } } cout << dp[n][k]; }

컴파일 시 표준 에러 (stderr) 메시지

blocks.c:1:10: fatal error: bits/stdc++.h: No such file or directory
    1 | #include <bits/stdc++.h>
      |          ^~~~~~~~~~~~~~~
compilation terminated.