結果
問題 | No.472 平均順位 |
ユーザー | xoke0114 |
提出日時 | 2018-05-03 19:10:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,384 bytes |
コンパイル時間 | 1,623 ms |
コンパイル使用メモリ | 173,536 KB |
実行使用メモリ | 589,824 KB |
最終ジャッジ日時 | 2024-06-28 00:48:02 |
合計ジャッジ時間 | 4,417 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | MLE | - |
testcase_15 | WA | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define REP(i, n) for (int i = 0; i < n; i++) #define REPR(i, n) for (int i = n; i >= 0; i--) #define FOR(i, m, n) for (int i = m; i < n; i++) #define pb push_back #define mp make_pair #define fill(x, y) memset(x, y, sizeof(x)) #define even(x) x % 2 == 0 #define odd(x) x % 2 != 0 #define all(x) x.begin(), x.end() #define pcnt __builtin_popcount #define buli(x) __builtin_popcountll(x) #define F first #define S second #define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end()); ll qp(ll a, ll b, int mo) { ll ans = 1; do { if (b & 1) ans = 1ll * ans * a % mo; a = 1ll * a * a % mo; } while (b >>= 1); return ans; } int gcd(int a, int b) { return b ? gcd(b, a % b) : a; } int dx[4] = {1, 0, -1, 0}; int dy[4] = {0, 1, 0, -1}; template <typename T> vector<T> make_v(size_t a) { return vector<T>(a); } template <typename T, typename... Ts> auto make_v(size_t a, size_t b, Ts... ts) { return vector<decltype(make_v<T>(b, ts...))>(a, make_v<T>(b, ts...)); } template <typename T, typename V> typename enable_if<is_class<T>::value == 0>::type fill_v(T &t, const V &v) { t = v; } template <typename T, typename V> typename enable_if<is_class<T>::value != 0>::type fill_v(T &t, const V &v) { for (auto &e : t) fill_v(e, v); } // auto dp = make_v<int>(4, h, w); // fill_v(dp, 0); const ll INF_LL = (1ll << 60); const int INF_INT = (int)1e9; const ll MOD_CONST = (ll)(1e9 + 7); template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; } template <class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return 1; } return 0; } inline tuple<ll, ll> rotate45(tuple<ll, ll> p) { ll x = get<0>(p), y = get<1>(p); return tuple<ll, ll>(x + y, x - y); } int main(void) { cin.tie(0); ios::sync_with_stdio(0); cout << fixed << setprecision(20); int N, P; cin >> N >> P; auto abc = make_v<ll>(N, 3); REP(i, N) cin >> abc[i][0] >> abc[i][1] >> abc[i][2]; auto dp = make_v<ll>(N, max(3, P+1)); REP(i, 3) dp[0][i] = abc[0][i]; FOR(i, 3, P+1) dp[0][i] = 1; FOR(i, 1, N) dp[i][0] = dp[i-1][0] + abc[i][0]; FOR(i, 1, N) { FOR(j, 1, max(3, P+1)) { ll v1 = dp[i-1][0] + ((j > 2) ? 1 : abc[i][j]); ll v2 = dp[i-1][j] + ((j > 2) ? 1 : abc[i][0]); dp[i][j] = min(v1, v2); } } cout << (double)dp[N-1][P] / (double)N << endl; return 0; }