結果

問題 No.2889 Rusk
ユーザー anago-pieanago-pie
提出日時 2024-09-19 21:41:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 2,983 bytes
コンパイル時間 2,252 ms
コンパイル使用メモリ 214,844 KB
実行使用メモリ 31,420 KB
最終ジャッジ日時 2024-09-19 21:41:43
合計ジャッジ時間 10,367 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 12 ms
6,944 KB
testcase_15 AC 45 ms
7,808 KB
testcase_16 AC 114 ms
14,848 KB
testcase_17 AC 33 ms
6,944 KB
testcase_18 AC 97 ms
13,056 KB
testcase_19 AC 210 ms
22,268 KB
testcase_20 AC 225 ms
26,732 KB
testcase_21 AC 186 ms
22,324 KB
testcase_22 AC 159 ms
19,604 KB
testcase_23 AC 127 ms
16,000 KB
testcase_24 AC 224 ms
26,448 KB
testcase_25 AC 123 ms
15,872 KB
testcase_26 AC 194 ms
21,880 KB
testcase_27 AC 237 ms
27,412 KB
testcase_28 AC 137 ms
17,408 KB
testcase_29 AC 143 ms
17,920 KB
testcase_30 AC 141 ms
17,728 KB
testcase_31 AC 229 ms
27,072 KB
testcase_32 AC 124 ms
13,440 KB
testcase_33 AC 29 ms
6,940 KB
testcase_34 AC 271 ms
31,396 KB
testcase_35 AC 272 ms
31,420 KB
testcase_36 AC 270 ms
31,380 KB
testcase_37 AC 270 ms
31,312 KB
testcase_38 AC 276 ms
31,372 KB
testcase_39 AC 112 ms
28,748 KB
testcase_40 AC 87 ms
23,048 KB
testcase_41 AC 118 ms
29,892 KB
testcase_42 AC 81 ms
21,716 KB
testcase_43 AC 39 ms
11,648 KB
testcase_44 AC 103 ms
27,112 KB
testcase_45 AC 80 ms
21,400 KB
testcase_46 AC 24 ms
8,064 KB
testcase_47 AC 42 ms
12,544 KB
testcase_48 AC 94 ms
24,608 KB
testcase_49 AC 2 ms
6,940 KB
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 1 ms
6,940 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 291 ms
31,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i=0; i<n; i++)
#define debug 0
#define YES cout << "Yes" << endl;
#define NO cout << "No" << endl;
using ll = long long;
using ld = long double;
const int mod = 998244353;
const int MOD = 1000000007;
const double pi = atan2(0, -1);
const int inf = 1 << 31-1;
const ll INF = 1LL << 63 - 1;
#include <time.h>
#include <chrono>

//vectorの中身を空白区切りで出力
template<typename T>
void printv(vector<T> v) {
	for (int i = 0; i < v.size(); i++) {
		cout << v[i];
		if (i < v.size() - 1) {
			cout << " ";
		}
	}
	cout << endl;
}

//vectorの中身を改行区切りで出力
template<typename T>
void print1(vector<T> v) {
	for (auto x : v) {
		cout << x << endl;
	}
}

//二次元配列を出力
template<typename T>
void printvv(vector<vector<T>> vv) {
	for (vector<T> v : vv) {
		printv(v);
	}
}

//vectorを降順にソート
template<typename T>
void rsort(vector<T>& v) {
	sort(v.begin(), v.end());
	reverse(v.begin(), v.end());
}

//昇順priority_queueを召喚
template<typename T>
struct rpriority_queue {
	priority_queue<T, vector<T>, greater<T>> pq;

	void push(T x) {
		pq.push(x);
	}

	void pop() {
		pq.pop();
	}

	T top() {
		return pq.top();
	}

	size_t size() {
		return pq.size();
	}

	bool empty() {
		return pq.empty();
	}
};

//mod mod下で逆元を算出する
//高速a^n計算(mod ver.)
ll power(ll a, ll n) {
	if (n == 0) {
		return 1;
	}
	else if (n % 2 == 0) {
		ll x = power(a, n / 2);
		x *= x;
		x %= mod;
		return x;
	}
	else {
		ll x = power(a, n - 1);
		x *= a;
		x %= mod;
		return x;
	}
}
//フェルマーの小定理を利用
ll modinv(ll p) {
	return power(p, mod - 2) % mod;
}

//Mexを求める
struct Mex {
	map<int, int> mp;
	set<int> s;
	Mex(int Max) {
		for (int i = 0; i <= Max; i++) {
			s.insert(i);
		}
	}

	int _mex = 0;
	void Input(int x) {
		mp[x]++;
		s.erase(x);
		if (_mex == x) {
			_mex = *begin(s);
		}
	}

	void Remove(int x) {
		if (mp[x] == 0) {
			cout << "Mex ERROR!: NO VALUE WILL BE REMOVED" << endl;
		}
		mp[x]--;
		if (mp[x] == 0) {
			s.insert(x);
			if (*begin(s) == x) {
				_mex = x;
			}
		}
	}

	int mex(){
		return _mex;
	}
};

int main() {
	int N;
	cin >> N;
	vector<vector<ll>> value(N, vector<ll>(3));
	rep(l, 3) {
		rep(i, N) {
			cin >> value[i][l];
		}
	}

	vector<vector<ll>> dp(N + 1, vector<ll>(6, -1));
	//level0:最初の生 1:片面焼き1 2:両面焼き 3:片面焼き後の最初 4:2度目の片面焼き 5:最後の生

	dp[0] = { 0,0,0,0,0,0 };

	rep(i, N) {
		dp[i + 1][0] = dp[i][0] + value[i][0];
		dp[i + 1][1] = max(dp[i][0], dp[i][1]) + value[i][1];
		dp[i + 1][2] = max(dp[i][0], max(dp[i][1], dp[i][2])) + value[i][2];
		dp[i + 1][3] = max(dp[i][1], dp[i][3]) + value[i][0];
		dp[i + 1][4] = max(dp[i][2],max(dp[i][3], dp[i][4])) + value[i][1];
		dp[i + 1][5] = max(dp[i][2], max(dp[i][4], dp[i][5])) + value[i][0];
	}

	ll ans = 0;
	rep(l, 6) {
		ans = max(ans, dp[N][l]);
	}
	cout << ans << endl;
}
0