結果

問題 No.1935 Water Simulation
ユーザー MazesobaMazesoba
提出日時 2022-05-15 16:16:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 2,083 bytes
コンパイル時間 4,650 ms
コンパイル使用メモリ 270,252 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-12 23:25:39
合計ジャッジ時間 5,598 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

using namespace std;

//#define DISABLE_PRINT

#if defined(ENABLE_PRINT) && !defined(DISABLE_PRINT)

#define P(...) fprintf(stderr, __VA_ARGS__)
#define P2(fmt) fprintf(stderr, fmt)
#define LP fprintf(stderr, "L: %d\n", __LINE__)

#else

#define P(...) ((void)0)
#define P2(fmt) ((void)0)
#define LP ((void)0)

#endif

#define rep(i, n) for(int i = 0; i < (int)(n); ++i)
#define ALL(x) x.begin(),x.end()

using ll = long long;
using ull = unsigned long long;

int main(int, const char**)
{
    array<int, 4> V;
    array<int, 4> W{};

    rep(i, 4) cin >> V[i];
    ll N; cin >> N;

    auto enc = [&](const array<int, 4>& w) {
        ll v = 0;
        rep(i, 4) {
            v *= 1000;
            v += w[i];
        }
        return v;
    };

    auto dec = [&](ll e) {
        array<int, 4> dec;
        rep(i, 4) {
            dec[3 - i] = e % 1000;
            e /= 1000;
        }
        return dec;
    };

    using Key = pair<int, ll>;
    ll c = 0;
    W[0] = V[0];
    map<Key, int> m;
    Key current;
    for(c = 0; c < N; ++c) {
        auto e = enc(W);
        current = Key{(int)c % 4, e};
        if(m.find(current) != m.end()) break;
        m[current] = c;
        auto f = c % 4;
        auto t = (c + 1) % 4;
        auto move = min(W[f], V[t] - W[t]);
        W[f] -= move;
        W[t] += move;
    }
    if(c == N) {
        P("easy\n");
        auto ans = W;
        for(auto a : ans) {
            cout << a << " ";
        }
        cout << endl;
        return 0;
    }
    auto loop = c - m[current];
    auto lead = m[current];
    auto mod = (N - lead) % loop;

    P("loop: %lld, lead: %d, mod: %lld\n", loop, lead, mod);

    for(auto p : m) {
        {
            auto d = dec(p.first.second);
            P("idx: %d, v: %d %d %d %d\n", p.second, d[0], d[1], d[2], d[3]);
        }
        if(p.second != mod + lead) continue;
        auto ans = dec(p.first.second);
        for(auto a : ans) {
            cout << a << " ";
        }
        cout << endl;
        break;
    }

    return 0;
}
0