結果
問題 | No.27 板の準備 |
ユーザー | T1610 |
提出日時 | 2019-04-01 00:13:02 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 1,243 bytes |
コンパイル時間 | 1,623 ms |
コンパイル使用メモリ | 169,640 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-26 13:45:40 |
合計ジャッジ時間 | 2,362 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> #define int long long using namespace std; #define rep(i,n) REP(i,0,n) #define REP(i,s,e) for(int i=(s); i<(int)(e); i++) #define repr(i, n) REPR(i, n, 0) #define REPR(i, s, e) for(int i=(int)(s-1); i>=(int)(e); i--) #define pb push_back #define all(r) r.begin(),r.end() #define rall(r) r.rbegin(),r.rend() #define fi first #define se second typedef long long ll; typedef vector<int> vi; typedef vector<ll> vl; typedef pair<int, int> pii; typedef pair<ll, ll> pll; const int INF = 1e9; const ll MOD = 1e9 + 7; double EPS = 1e-8; const int MAX_M = 62; int dp[MAX_M]; template<typename T> T chmax(T& a, const T& b){return a = (a > b ? a : b);} template<typename T> T chmin(T& a, const T& b){return a = (a < b ? a : b);} signed main(){ constexpr int N = 4; vector<int> v(N); rep(i, N) cin >> v[i]; int ans = INF; REP(A, 1, 31) REP(B, 1, A) REP(C, 1, B) { rep(i, MAX_M) dp[i] = INF; dp[0] = 0LL; rep(i, 31) { chmin(dp[i+A], dp[i] + 1); chmin(dp[i+B], dp[i] + 1); chmin(dp[i+C], dp[i] + 1); } int tmp = 0; rep(i, N) tmp += dp[v[i]]; chmin(ans, tmp); } cout << ans << endl; return 0; }