結果
問題 | No.1536 仕切り直し |
ユーザー | logx |
提出日時 | 2021-06-06 16:05:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,120 bytes |
コンパイル時間 | 1,808 ms |
コンパイル使用メモリ | 176,204 KB |
実行使用メモリ | 25,728 KB |
最終ジャッジ日時 | 2024-05-04 00:46:26 |
合計ジャッジ時間 | 3,666 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 9 ms
9,216 KB |
testcase_09 | AC | 11 ms
11,392 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
#ifdef LOGX #define _GLIBCXX_DEBUG #endif #include <bits/stdc++.h> using namespace std; //#include <atcoder/all> //using namespace atcoder; /*---------macro---------*/ #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep2(i, s, n) for (int i = s; i < (int)(n); i++) #define unless(x) if(!(x)) #define until(x) while(!(x)) #define ALL(a) a.begin(),a.end() #define RALL(a) a.rbegin(),a.rend() #define mybit(i,j) (((i)>>(j))&1) /*---------type/const---------*/ const int big=1000000007; //const int big=998244353; const double EPS=1e-8; //適宜変える typedef long long ll; typedef unsigned long long ull; typedef std::string::const_iterator state; //構文解析 const int dx[4]={1,0,-1,0}; const int dy[4]={0,1,0,-1}; const char newl='\n'; struct{ constexpr operator int(){return -int(1e9)-10;} constexpr operator ll(){return -ll(1e18)-10;} }neginf; struct{ constexpr operator int(){return int(1e9)+10;} constexpr operator ll(){return ll(1e18)+10;} constexpr auto operator -(){return neginf;} }inf; /*---------debug---------*/ #ifdef LOGX #include <template/debug.hpp> #else #define dbg(...) ; #define dbgnewl ; #define prt(x) ; #define _prt(x) ; #endif /*---------function---------*/ template<typename T> T max(const std::vector<T> &a){T ans=a[0];for(T elem:a){ans=max(ans,elem);}return ans;} template<typename T> T min(const std::vector<T> &a){T ans=a[0];for(T elem:a){ans=min(ans,elem);}return ans;} template<typename T,typename U> bool chmin(T &a,const U b){if(a>b){a=b;return true;}return false;} template<typename T,typename U> bool chmax(T &a,const U b){if(a<b){a=b;return true;}return false;} bool valid(int i,int j,int h,int w){return (i>=0 && j>=0 && i<h && j<w);} template<class T,class U>T expm(T x,U y,const ll mod=big){T res=1;while(y){if(y&1)(res*=x)%=mod;(x*=x)%=mod;y>>=1;}return res;} template<class T,class U>T exp(T x,U y){T res=1;while(y){if(y&1)res*=x;x*=x;y>>=1;}return res;} int main(){ //std::ios::sync_with_stdio(false); //std::cin.tie(nullptr); std::cout.precision(10); /*------------------------------------*/ int n,m;cin >> n >> m; assert(1<=n && n<=2000); assert(1<=m && m<=2000); vector<int> a(n); rep(i,n){ cin >> a[i]; assert(-1000000000<=a[i] && a[i]<=1000000000); } //dp[i][j]=1-idxでi番までみて、それより手前にj個しきりを使った時の答え. vector<vector<ll>> dp(n+1,vector<ll>(m+1,-inf)); dp[0][0]=0; rep(i,n)rep(j,m+1){//配る. chmax(dp[i+1][j],dp[i][j]+(j&1 ? -1:1)*a[i]); if(j+1<=m)chmax(dp[i+1][j+1],dp[i][j]+(j&1 ? 1:-1)*a[i]); } int M=-inf; int idx=0; for(int i=0;i<=m;i++)if(chmax(M,dp[n][i]))idx=i; dbg(M); dbg(dp); vector<int> ans; for(int i=n-1;i>=0;i--){ //いまdp[i+1][idx]にいる. unless(dp[i][idx]+(idx&1 ? -1:1)*a[i] == dp[i+1][idx]){ assert(dp[i][idx-1]+(idx&1 ? -1:1)*a[i] == dp[i+1][idx]); idx--; ans.emplace_back(i); } } until((int)ans.size()==m)ans.emplace_back(n); for(int x:ans)cout << x << newl; }