結果
問題 | No.2889 Rusk |
ユーザー |
|
提出日時 | 2024-09-13 21:33:15 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 80 ms / 2,000 ms |
コード長 | 1,288 bytes |
コンパイル時間 | 2,052 ms |
コンパイル使用メモリ | 198,896 KB |
最終ジャッジ日時 | 2025-02-24 07:13:30 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 52 |
ソースコード
#include "bits/stdc++.h" using namespace std; #define all(x) x.begin(),x.end() template<typename A, typename B> ostream& operator<<(ostream &os, const pair<A, B> &p) { return os << p.first << " " << p.second; } template<typename T_container, typename T = typename enable_if<!is_same<T_container, string>::value, typename T_container::value_type>::type> ostream& operator<<(ostream &os, const T_container &v) { string sep; for (const T &x : v) os << sep << x, sep = " "; return os; } #ifdef LOCAL #include "debug.h" #else #define debug(...) 42 #define ASSERT(...) 42 #endif typedef long long ll; typedef vector<int> vi; typedef vector<vi> vvi; typedef pair<int,int> pi; const int oo = 1e9; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); // 010, 01210 01010 int n; cin >> n; vi a[3] = {vi(n),vi(n),vi(n)}; for(auto& v : a) for(auto& i : v) cin >> i; auto solve = [&](vi st) { vector<ll> dp(st.size()); for(int i=0;i<n;++i) { for(int i=1;i<dp.size();++i) { dp[i]=max(dp[i],dp[i-1]); } for(int j=0;j<dp.size();++j) { dp[j]+=a[st[j]][i]; } } return *max_element(all(dp)); }; cout << max(solve({0,1,0,1,0}),solve({0,1,2,1,0})); }