Submission #1607121


Source Code Expand

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef unsigned __int128 HASH;
typedef pair<int,int> pii;
typedef pair<ll, ll> pll;
typedef pair<ull, ull> pullull;
typedef pair<ll,int> plli;
typedef pair<double, int> pdbi;
typedef pair<int,pii> pipii;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<vi> vvi;
typedef vector<vvi> vvvi;
typedef vector<pii> vpii;
typedef vector<vector<int>> mat;

#define rep(i,n) for (int i=0;i<(n);i++)
#define rep2(i,a,b) for (int i=(a);i<(b);i++)
#define rrep(i,n) for (int i=(n);i>0;i--)
#define rrep2(i,a,b) for (int i=(a);i>b;i--)
#define pb push_back
#define fi first
#define se second
#define all(a) (a).begin(),(a).end()
#define rall(a) (a).rbegin(),(a).rend()

const ll hmod1 = 999999937;
const ll hmod2 = 1000000000 + 9;
const ll INF = 1<<30;
const ll mod = 1000000000 + 7;
const int dx4[4] = {1, 0, -1, 0};
const int dy4[4] = {0, 1, 0, -1};
const int dx8[8] = {1, 1, 1, 0, 0, -1, -1, -1};
const int dy8[8] = {0, 1, -1, 1, -1, 0, 1, -1};
const double pi = 3.141592653589793;

//#define int long long
#define addm(X, Y) (X) = ((X) + ((Y) % mod) + mod) % mod

int n, m;
int a[55], b[55];
int dp[52][52][52][52][2];

int calc(int da, int db, int sa, int sb, int tn) {
    if (sa == 0 && sb == 0) return 0;
    int i = n - 1 - da;
    int j = m - 1 - db;
    bool checka = false, checkb = false;
    int ret = 0;
    if (sb == 0) {
        while (i > (n - 1 - da - sa)) {
            if (a[i] != -1) ret += a[i];
            i--;
        }
        return ret;
    }
    if (sa == 0) {
        while(j > (m - 1 - db - sb)) {
            if (b[j] != -1) ret -= b[j];
            j--;
        }
        return ret;
    }
    //cout << tn << " " << i << " " << n - 1 - da - sa << " " << j << " " << m - 1 - db - sb << endl;
    while (i > (n - 1 - da - sa) && j > (m - 1 - db - sb)) {
        if (tn == 1) {
            if (a[i] == -1) checkb = true;
            else if (!checka) ret += a[i];
            if (b[j] == -1) checka = true;
            else if (!checkb) ret -= b[j];
            i--; j--;
        }
        else {
            if (b[j] == -1) checka = true;
            else if (!checkb) ret -= b[j];
            if (a[i] == -1) checkb = true;
            else if (!checka) ret += a[i];
            i--; j--;
        }
    }
    if (!checka) {
        while (i > (n - 1 - da - sa)) {
            if (a[i] != -1) ret += a[i];
            i--;
        }
    }
    if (!checkb) {
        while (j > (m - 1 - db - sb)) {
            if (b[j] != -1) ret -= b[j];
            j--;
        }
    }
    return ret;
}

int dfs(int da, int db, int sa, int sb, int tn, int cnt) {
    if ((dp[da][db][sa][sb][tn] != INF) && (dp[da][db][sa][sb][tn] != -INF)) return dp[da][db][sa][sb][tn];
    if (da == 0 && db == 0) return dp[da][db][sa][sb][tn] = calc(da, db, sa, sb, tn);
    if (da == 0 && tn == 0) {
        if (sa == 0 && sb == 0 && cnt == 2) return 0;
        return dp[da][db][sa][sb][0] = calc(da, db, sa, sb, tn) + dfs(da, db, 0, 0, 1, cnt + 1);
    }
    else if (db == 0 && tn == 1) {
        if (sa == 0 && sb == 0 && cnt == 2) return 0;
        return dp[da][db][sa][sb][1] = calc(da, db, sa, sb, tn) + dfs(da, db, 0, 0, 0, cnt + 1);
    }
    if (tn == 0) {
        //dp[da][db][sa][sb][0] = -INF;
        dp[da][db][sa][sb][0] = max(dp[da][db][sa][sb][0], dfs(da - 1, db, sa + 1, sb, 1, 0));
        if (sa == 0 && sb == 0 && cnt == 2) return max(0, dp[da][db][sa][sb][0]);
        int tmp = calc(da, db, sa, sb, tn);
        dp[da][db][sa][sb][0] = max(dp[da][db][sa][sb][0], tmp + dfs(da, db, 0, 0, 1, cnt + 1));
        return dp[da][db][sa][sb][0];
    }
    else {
        //dp[da][db][sa][sb][1] = INF;
        dp[da][db][sa][sb][1] = min(dp[da][db][sa][sb][1], dfs(da, db - 1, sa, sb + 1, 0, 0));
        if (sa == 0 && sb == 0 && cnt == 2) return min(0, dp[da][db][sa][sb][1]);
        int tmp = calc(da, db, sa, sb, tn);
        dp[da][db][sa][sb][1] = min(dp[da][db][sa][sb][1], tmp + dfs(da, db, 0, 0, 0, cnt + 1));
        return dp[da][db][sa][sb][1];
    }
}

signed main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    cin >> n >> m;
    rep(i, n) cin >> a[i];
    rep(i, m) cin >> b[i];
    rep(i, n + 1)rep(j, m + 1)rep(k, n + 1)rep(l, m + 1) {
        dp[i][j][k][l][0] = -INF;
        dp[i][j][k][l][1] = INF;
    }
    cout << dfs(n, m, 0, 0, 0, 0) << endl;
}

Submission Info

Submission Time
Task D - インビジブル
User roto_37
Language C++14 (GCC 5.4.1)
Score 0
Code Size 4547 Byte
Status WA
Exec Time 35 ms
Memory 56320 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 14
WA × 23
Set Name Test Cases
All 00_sample_00, 00_sample_01, 00_sample_02, 30_random_small_000, 30_random_small_001, 30_random_small_002, 30_random_small_003, 30_random_small_004, 30_random_small_005, 30_random_small_006, 30_random_small_007, 30_random_small_008, 30_random_small_009, 31_random_skewed_000, 31_random_skewed_001, 31_random_skewed_002, 31_random_skewed_003, 31_random_skewed_004, 32_random_skewed_000, 32_random_skewed_001, 32_random_skewed_002, 32_random_skewed_003, 32_random_skewed_004, 33_random_frequent_invisible_000, 33_random_frequent_invisible_001, 33_random_frequent_invisible_002, 33_random_frequent_invisible_003, 33_random_frequent_invisible_004, 35_random_all_invisible_000, 36_random_all_same_score_000, 37_increasing_000, 38_decreasing_000, 40_random_max_000, 40_random_max_001, 40_random_max_002, 40_random_max_003, 40_random_max_004
Case Name Status Exec Time Memory
00_sample_00 AC 2 ms 2304 KB
00_sample_01 AC 2 ms 2432 KB
00_sample_02 AC 2 ms 4480 KB
30_random_small_000 WA 5 ms 8704 KB
30_random_small_001 AC 2 ms 6528 KB
30_random_small_002 WA 2 ms 2432 KB
30_random_small_003 AC 2 ms 4480 KB
30_random_small_004 AC 2 ms 4352 KB
30_random_small_005 WA 2 ms 4480 KB
30_random_small_006 WA 2 ms 2432 KB
30_random_small_007 WA 2 ms 2432 KB
30_random_small_008 WA 1 ms 256 KB
30_random_small_009 WA 1 ms 384 KB
31_random_skewed_000 WA 12 ms 54016 KB
31_random_skewed_001 WA 13 ms 54016 KB
31_random_skewed_002 WA 12 ms 53888 KB
31_random_skewed_003 AC 12 ms 53632 KB
31_random_skewed_004 WA 13 ms 54016 KB
32_random_skewed_000 WA 4 ms 11264 KB
32_random_skewed_001 WA 2 ms 2816 KB
32_random_skewed_002 WA 4 ms 9216 KB
32_random_skewed_003 WA 2 ms 2816 KB
32_random_skewed_004 AC 2 ms 2816 KB
33_random_frequent_invisible_000 WA 6 ms 25088 KB
33_random_frequent_invisible_001 WA 18 ms 55040 KB
33_random_frequent_invisible_002 WA 14 ms 44288 KB
33_random_frequent_invisible_003 AC 4 ms 14848 KB
33_random_frequent_invisible_004 AC 3 ms 6912 KB
35_random_all_invisible_000 AC 3 ms 9088 KB
36_random_all_same_score_000 AC 29 ms 56320 KB
37_increasing_000 AC 29 ms 56192 KB
38_decreasing_000 AC 29 ms 56320 KB
40_random_max_000 WA 35 ms 56192 KB
40_random_max_001 WA 34 ms 56192 KB
40_random_max_002 WA 34 ms 56320 KB
40_random_max_003 WA 33 ms 56320 KB
40_random_max_004 WA 34 ms 56320 KB