ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

LuoguP5322 [BJOI2019]排兵布阵(DP)

2019-10-26 15:54:13  阅读:306  来源: 互联网

标签:BJOI2019 排兵 return LuoguP5322 int ATP inline include define


城为物,人为容,价值?排序后,一切都明了

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
#include <cmath>
#define R(a,b,c) for(register int a = (b); a <= (c); ++a)
#define nR(a,b,c) for(register int a = (b); a >= (c); --a)
#define Fill(a,b) memset(a, b, sizeof(a))
#define Swap(a,b) ((a) ^= (b) ^= (a) ^= (b))
#define QWQ
#ifdef QWQ
#define D_e_Line printf("\n---------------\n")
#define D_e(x) cout << (#x) << " : " << x << "\n"
#define Pause() system("pause")
#define FileOpen() freopen("in.txt", "r", stdin)
#define FileSave() freopen("out.txt", "w", stdout)
#define TIME() fprintf(stderr, "\nTIME : %.3lfms\n", clock() * 1000.0 / CLOCKS_PER_SEC)
#else
#define D_e_Line ;
#define D_e(x) ;
#define Pause() ;
#define FileOpen() ;
#define FileSave() ;
#define TIME() ;
#endif
struct ios {
    template<typename ATP> inline ios& operator >> (ATP &x) {
        x = 0; int f = 1; char c;
        for(c = getchar(); c < '0' || c > '9'; c = getchar()) if(c == '-') f = -1;
        while(c >= '0' && c <='9') x = x * 10 + (c ^ '0'), c = getchar();
        x *= f;
        return *this;
    }
}io;
using namespace std;
template<typename ATP> inline ATP Max(ATP a, ATP b) {
    return a > b ? a : b;
}
template<typename ATP> inline ATP Min(ATP a, ATP b) {
    return a < b ? a : b;
}
template<typename ATP> inline ATP Abs(ATP a) {
    return a < 0 ? -a : a;
}

const int N = 107;

int f[20007], a[N][N];

int main() {
    int s, n, m;
    io >> s >> n >> m;
    R(i,1,s){
        R(j,1,n){
            io >> a[j][i];
        }
    }
    R(i,1,n){
        sort(a[i] + 1, a[i] + s + 1);
    }
    R(i,1,n){
        nR(j,m,0){
            R(k,1,s){
                if(j >= (a[i][k] << 1 | 1)){
                    f[j] = Max(f[j], f[j - ((a[i][k] << 1 | 1))] + k * i);
                }
            }
        }
    }
    int ans = 0;
    R(i,0,m) ans = Max(ans, f[i]);
    printf("%d", ans);
    return 0;
} 

标签:BJOI2019,排兵,return,LuoguP5322,int,ATP,inline,include,define
来源: https://www.cnblogs.com/bingoyes/p/11743429.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有