結果

問題 No.1004 サイコロの実装 (2)
ユーザー BSerBSer
提出日時 2020-03-06 21:33:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,662 bytes
コンパイル時間 1,746 ms
コンパイル使用メモリ 170,496 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-22 05:12:07
合計ジャッジ時間 2,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using Edge = int;
using Graph = vector<vector<Edge>>;
#define REP(i, n) for (int i = 0; i < (n); ++i)
#define SORT(v) sort((v).begin(), (v).end())
#define RSORT(v) sort((v).rbegin(), (v).rend())
const ll MOD = 10000;
const ll nmax = 8;
const ll INF = 1e9;

class UnionFind
{
public:
    vector<ll> Parent;

    UnionFind(ll N)
    {
        Parent = vector<ll>(N, -1);
    }
    ll find(ll A)
    {
        if (Parent[A] < 0)
            return A;
        return Parent[A] = find(Parent[A]);
    }

    ll size(ll A)
    {
        return -Parent[find(A)];
    }

    bool Union(ll A, ll B)
    {
        A = find(A);
        B = find(B);
        if (A == B)
        {
            return false;
        }
        if (size(A) < size(B))
            swap(A, B);

        Parent[A] += Parent[B];
        Parent[B] = A;

        return true;
    }
};

ll gcd(ll a, ll b)
{
    if (b == 0)
        return a;
    return gcd(b, a % b);
}

ll lcm(ll a, ll b)
{
    ll g = gcd(a, b);
    return a / g * b;
}

ll mulMod(ll a, ll b)
{
    return (((a % MOD) * (b % MOD)) % MOD);
}

ll powMod(ll a, ll p)
{
    if (p == 0)
    {
        return 1;
    }
    else if (p % 2 == 0)
    {
        ll half = powMod(a, p / 2);
        return mulMod(half, half);
    }
    else
    {
        return mulMod(powMod(a, p - 1), a);
    }
}

ll ceil(ll a, ll b)
{
    return (a + b - 1) / b;
}

bool isOK(map<char, ll> cnter, ll cnt, ll K, char c)
{
    if (cnt == K)
    {
        if (cnter[c] >= 1)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
    else if (cnt == K - 1)
    {
        if (cnter[c] == 0)
        {
            return true;
        }
    }
    return false;
}

ll dp[5050][5050];
vector<ll> cake(5050);
ll f(int left, int right)
{
    if (dp[left][right] != -1)
    {
        return dp[left][right];
    }

    if (left == right)
    {
        return dp[left][right] = cake[left];
    }
    if (left + 1 == right)
    {
        return dp[left][right] = max(cake[left], cake[right]);
    }

    ll ret = -1;

    if (cake[left + 1] < cake[right])
    {
        ret = max(ret, cake[left] + f(left + 1, right - 1));
    }
    else
    {
        ret = max(ret, cake[left] + f(left + 2, right));
    }

    if (cake[left] < cake[right - 1])
    {
        ret = max(ret, cake[right] + f(left, right - 2));
    }
    else
    {
        ret = max(ret, cake[right] + f(left + 1, right - 1));
    }
    return dp[left][right] = ret;
}
int main()
{
    ll a, b, x, n;
    cin >> a >> b >> x >> n;
    cout << 0 << " " << 0 << endl;

    return 0;
}
0