zoukankan      html  css  js  c++  java
  • 【CodeForces】Gargari and Bishops

    依据贪心能够知道,放置的教主必须不能相互攻击到(也就是不在一条对角线上)才干够使得结果最大化。

    依据观察能够得到教主相互不攻击的条件是他的坐标和互为奇偶(x + y)

    之后直接暴力,处理每一个坐标对角线的和就好

    时间复杂度 0(n ^ 2)

    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    using namespace std;
    typedef long long LL;
    const int maxn = 2005;
    LL sum_l[maxn * 10] = {0},sum_r[maxn * 10] = {0};
    LL mat[maxn][maxn];
    int main(){
        int n,m;
        LL  x;
        scanf("%d",&n);
        for(int i = 0; i < n; i++){
            for(int j = 0; j < n; j++){
                scanf("%I64d",&mat[i][j]);
                sum_l[i + j] += mat[i][j];
                sum_r[n - 1 + j - i] += mat[i][j];
            }
        }
        //for(int i = 0; i < 2 * n - 1; i++)
        //    printf("%I64d %I64d
    ",sum_l[i],sum_r[i]);
        LL max1 = - 1,max2 = -1;
        int x1,x2,y1,y2;
        for(int i = 0; i < n; i++)
            for(int j = 0; j < n; j++){
                LL ret = sum_l[i + j] + sum_r[n - 1 + j - i] - mat[i][j];
                if(((i + j) & 1) && ret > max1){
                    max1 = ret;
                    x1 = i;
                    y1 = j;
                }
                else if((!((i + j) & 1)) && ret > max2){
                    max2 = ret;
                    x2 = i;
                    y2 = j;
                }
            }
        LL ans = max1 + max2;
        printf("%I64d
    ",ans);
        printf("%d %d %d %d
    ",x1 + 1,y1 + 1,x2 + 1,y2 + 1);
        return 0;
    }
    

  • 相关阅读:
    如何设置某些动作在凌晨12点时自动更新
    箭头式导航
    解决遮罩层下面的内容仍可滑动问题
    时间戳转换时间
    折扣显示
    纯css自定义checkbox和radio的样式
    布局补充
    文字水平垂直居中
    Spring_自动组件扫描和 基于注解配置bean
    Spring_JDBC连接
  • 原文地址:https://www.cnblogs.com/llguanli/p/7127721.html
Copyright © 2011-2022 走看看