結果
問題 | No.1117 数列分割 |
ユーザー | 小指が強い人 |
提出日時 | 2020-08-11 01:40:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,160 bytes |
コンパイル時間 | 2,515 ms |
コンパイル使用メモリ | 214,668 KB |
実行使用メモリ | 80,928 KB |
最終ジャッジ日時 | 2024-10-09 04:24:41 |
合計ジャッジ時間 | 16,986 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
79,616 KB |
testcase_01 | AC | 54 ms
74,368 KB |
testcase_02 | AC | 52 ms
74,368 KB |
testcase_03 | AC | 70 ms
74,240 KB |
testcase_04 | AC | 161 ms
74,368 KB |
testcase_05 | AC | 52 ms
74,368 KB |
testcase_06 | AC | 52 ms
74,368 KB |
testcase_07 | AC | 53 ms
74,368 KB |
testcase_08 | AC | 440 ms
74,240 KB |
testcase_09 | AC | 94 ms
74,240 KB |
testcase_10 | AC | 607 ms
74,240 KB |
testcase_11 | AC | 2,221 ms
74,368 KB |
testcase_12 | AC | 766 ms
74,368 KB |
testcase_13 | AC | 79 ms
74,368 KB |
testcase_14 | AC | 2,156 ms
74,368 KB |
testcase_15 | AC | 119 ms
74,368 KB |
testcase_16 | AC | 2,552 ms
74,368 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long ll; typedef unsigned long long ull; typedef vector<int> veci; typedef vector<string> vecs; template<class T,class U> using Hash=unordered_map<T,U>; #define REP(i, a, n) for(ll i = a; i < n; i++) #define RREP(i, a, n) for(ll i = n-1; i >= 0; i--) #define rep(i, n) REP(i, 0, n) #define rrep(i, n) RREP(i, 0, n) #define MD 1000000007 void read(){} template<class Head, class... Tail> void read(Head& head, Tail&... tail){cin >> head;read(tail...);} template<class T> void rarr(T a, int n){for(int i = 0; i < n; i++) {cin >> a[i];}} template<class T> void write(T a){cout << a << endl;} template<class T> void writes(vector<T> a, const char* c = " "){cout << a[0];for(int i = 1; i < (int)a.size(); i++)cout << c << a[i];cout << endl;;} void write(double a){cout << fixed << setprecision(12) << a << endl;} template<class T> void warr(T a, int n, char* c = " "){cout << a[0];for(int i = 1; i < n; i++)cout << c << a[i];cout << endl;} void split(string s, string delim, veci& result){result.clear();string::size_type pos = 0;while(pos != string::npos){string::size_type p = s.find(delim, pos);if(p == string::npos){result.push_back(atoi(s.substr(pos).data()));break;}else {result.push_back(atoi(s.substr(pos, p - pos).data()));}pos = p + delim.size();}} void split(string s, string delim, vecs& result){result.clear();string::size_type pos = 0;while(pos != string::npos){string::size_type p = s.find(delim, pos);if(p == string::npos){result.push_back(s.substr(pos));break;}else {result.push_back(s.substr(pos, p - pos));}pos = p + delim.size();}} ll gcd(ll a, ll b){while(true){ll k = a % b;if(k == 0)return b;a = b;b = k;}} ll comb(ll n, ll m){ll p=1;m=min(m,n-m);for(ll i=1;i<=m;i++){p*=n-i+1;p/=i;}return p;} void calc(vector<int> &a,vector<ll> &a_id,vector<ll> &a_nm,int n){ int xsum=0; rep(i,n){ xsum^=a[i]; a_id[xsum]++; } a_nm = a_id; rep(i,1024){ REP(j,i,1024){ ll t=a_id[i]*a_id[j]; ll xo=i^j; if(j==i)t-=((a_id[i]+1)*a_id[i])/2; a_nm[xo]=(a_nm[xo]+t)%MD; } } } #define EMPTY_ ((ll)-1e17) int main() { int n,k,m; vector<ll> a; vector<vector<ll>> dp; read(n,k,m); a.resize(n); rep(i,n)read(a[i]); dp.resize(3010); rep(i,3010)dp[i].resize(3010,EMPTY_); dp[0][0]=0; rep(ii,k){ int no_more=n-(k-ii-1); REP(jj,ii,no_more){ double ln=(n-jj)/(double)(k-ii); //cout<<m<<" "<<ln<<" "<<no_more<<endl; if(m<ln)continue; if(dp[jj][ii]==EMPTY_)continue; ll sum=0; rep(kk,m){ int jj_kk=jj+kk; if(jj_kk>=no_more)break; sum+=a[jj_kk]; dp[jj_kk+1][ii+1]=max(dp[jj_kk+1][ii+1],dp[jj][ii]+abs(sum)); } } } cout<<dp[n][k]<<endl; return 0; } // GCC reference: // https://gcc.gnu.org/ // C++ language references: // https://cppreference.com/ // https://isocpp.org/ // http://www.open-std.org/jtc1/sc22/wg21/ // Boost libraries references: // https://www.boost.org/doc/