题目链接:http://codeforces.com/contest/463/problem/C

题目意思:要在一个 n * n 大小的棋盘上放置两个bishop,bishop可以攻击的所有位置是包括经过bishop 位置的两条成90度的对角线所经过的所有坐标点。每个坐标点都有数字在上面,放置一个bishop后,可以获得能被放置的bishop攻击的所有坐标点的数字的和。但是有一个条件限制:同一个坐标点不能被两个bishop攻击,也就是四条对角线的交点不能是棋盘上的某个坐标点。求出在该条件限制下,两个bishop的放置位置以及能获得的最大和。

首先没有看到这个条件wa了很多次: place two bishops on the chessboard in such a way that there is no cell that is attacked by both of them。

好不容易看到之后,就各种TLE了,原来是读入问题!!!!涨姿势勒= =

可喜的是,原来自己最开始的做法是可取的,不过都是因为读入问题。

先介绍作者的灵活高效版:

先看一个图:

作者的做法有两个巧妙之处:

(1)求 bishop 能够攻击的所有坐标点的和,简而言之就是一个坐标点的两条对角线的和。

  设两个数组d1[],d2[],用于保存两种方向下的对角线总和。(虚线部分标明了方向)。d1[]数组是通过d1[i+j] += board[i][j] 来算的,而 d2是这样:d2[i-j+n] += board[i][j]。

如果要求某个特定的坐标(i, j)的对角线和,那么就是d1[i+j] + d2[i-j+n] - board[i][j] ,之所以要减去board是因为每个坐标点的和都被重复算多了一次。

(2)判断攻击的方法

假设 bishop1 坐标为(i1, j1),bishop2 为(i2, j2),如果( i1 + j1),( i2 + j2) 同奇或同偶,那么就存在某一个坐标点同时被两个bishop 攻击!

所以要满足不存在某个坐标同时被两个bishop 攻击,就需要(i1 + j1) 和 (i2+j2) 处于一奇一偶的情况。那么奇数找一个最大值,偶数的话又找一个最大值,加起来就是两个bishop放置后能够获得的最大和了。

Time:  217ms     Memory:  31400KB

 #include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
using namespace std; typedef long long LL;
const int maxn = + ; LL board[maxn][maxn];
LL d1[maxn<<], d2[maxn<<];
pair<int, int> ans[];
LL tmp[]; inline LL read() // 这个读入是避免TLE的关键
{
int x = , f = ;
char ch = getchar();
while (ch >= '' && ch <= '')
{
x = *x + ch-'';
ch = getchar();
}
return (LL)(x * f);
} int main()
{
int n, x1, x2, y1, y2;
while (scanf("%d", &n) != EOF)
{
memset(d1, , sizeof(d1));
memset(d2, , sizeof(d2));
getchar(); // 不能省!n之后有个空格= =
for (int i = ; i <= n; i++)
{
for (int j = ; j <= n; j++)
{
board[i][j] = read();
d1[i+j] += board[i][j];
d2[i-j+n] += board[i][j];
}
}
tmp[] = tmp[] = -; // 0也可以,但是后面要>=,防止多次被替换还是-1好,省时一点吧
for (int i = ; i <= n; i++)
{
for (int j = ; j <= n; j++)
{
LL val = d1[i+j] + d2[i-j+n] - board[i][j];
if (val > tmp[(i+j)&])
{
tmp[(i+j)&] = val;
ans[(i+j)&].first = i;
ans[(i+j)&].second = j;
}
}
}
printf("%lld\n", tmp[] + tmp[]);
printf("%d %d %d %d\n", ans[].first, ans[].second, ans[].first, ans[].second);
}
return ;
}

接下来就是我的做法(大家可以忽略)

求对角线的和的时候,我是采取从第1行,第1列,最后1列出发来求得的,最后还是需要减去board[i][j],代码量好大,因为太多重复 = =

至于判断攻击,除了利用abs函数(恰好对角线),还利用了之前做的一条 cf370A 的 Rook, Bishop  and King的做法啦—— 判断Bishop 步数。

毕竟自己写的,留下纪念吧 = =

真是又长又耗时啊~~

Time:  1122ms     Memory:  125504KB

 #include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
using namespace std; typedef long long LL;
const int maxn = + ; struct node
{
LL s;
int x, y;
bool operator < (const node& a) const
{
return s < a.s;
}
}num[maxn*maxn]; LL board[maxn][maxn];
LL sum[maxn][maxn]; inline LL read() // 这个读入是避免TLE的关键
{
int x = , f = ;
char ch = getchar();
while (ch >= '' && ch <= '')
{
x = *x + ch-'';
ch = getchar();
}
return (LL)(x * f);
} int main()
{
int n;
while (scanf("%d", &n) != EOF)
{
getchar();
for (int i = ; i <= n; i++)
{
for (int j = ; j <= n; j++)
board[i][j] = (LL)read();
}
memset(sum, , sizeof(sum));
// 第 1 行
int i = ;
for (int j = ; j <= n; j++)
{
LL ss = ;
int ti = i;
int tj = j; // 右下
while (ti <= n && tj <= n)
{
ss += board[ti][tj];
ti++;
tj++;
}
ti = i;
tj = j;
while (ti <= n && tj <= n)
{
sum[ti][tj] += ss;
ti++;
tj++;
}
ti = i;
tj = j; // 左下
ss = ;
while (ti <= n && tj >= )
{
ss += board[ti][tj];
ti++;
tj--;
}
ti = i;
tj = j;
while (ti <= n && tj >= )
{
sum[ti][tj] += ss;
ti++;
tj--;
}
}
// 第 1 列
int j = ;
for (int i = ; i <= n; i++)
{
LL ss = ;
int ti = i;
int tj = j;
while (ti <= n && tj <= n)
{
ss += board[ti][tj];
ti++;
tj++;
} ti = i;
tj = j;
while (ti <= n && tj <= n)
{
sum[ti][tj] += ss;
ti++;
tj++;
}
}
j = n;
for (int i = ; i <= n; i++)
{
LL ss = ;
int ti = i;
int tj = j;
while (ti <= n && tj >= )
{
ss += board[ti][tj];
ti++;
tj--;
}
ti = i;
tj = j;
while (ti <= n && tj >= )
{
sum[ti][tj] += ss;
ti++;
tj--;
}
}
int cnt = ;
for (int i = ; i <= n; i++)
{
for (int j = ; j <= n; j++)
{
num[cnt].x = i;
num[cnt].y = j;
num[cnt++].s = sum[i][j] - board[i][j];
}
}
int flag = ;
LL maxsum;
int x1, y1, x2, y2;
sort(num, num+cnt);
for (int i = cnt-; i >= && !flag; i--)
{
for (int j = i-; j >= && !flag; j--)
{
int t1 = num[i].x + num[i].y;
int t2 = abs(num[j].x - num[j].y);
if ((t1 + t2) % == )
continue;
if (abs(num[i].x-num[j].x) != abs(num[i].y - num[j].y))
{
flag = ;
x1 = num[i].x, x2 = num[j].x;
y1 = num[i].y, y2 = num[j].y;
maxsum = num[i].s + num[j].s;
break;
}
}
}
printf("%lld\n", maxsum);
printf("%d %d %d %d\n", x1, y1, x2, y2);
}
return ;
}

codeforces 463C. Gargari and Bishops 解题报告的更多相关文章

  1. Codeforces 463C Gargari and Bishops 题解

    题目出处: http://codeforces.com/contest/463/problem/C 感觉本题还是挺难的.须要好好总结一下. 计算对角线的公式: 1 右斜对角线,也叫主对角线的下标计算公 ...

  2. codeforces 463C Gargari and Bishops

    题目链接 这个题, 最主要的应该是找到对角线上的格子的关系. “ \" 这种对角线, 关系是x-y+n相等, ” / “ 这种, 关系是x+y相等.知道每个格子的两种对角线的值, 那么这个格 ...

  3. Codeforces Educational Round 92 赛后解题报告(A-G)

    Codeforces Educational Round 92 赛后解题报告 惨 huayucaiji 惨 A. LCM Problem 赛前:A题嘛,总归简单的咯 赛后:A题这种**题居然想了20m ...

  4. codeforces 476C.Dreamoon and Sums 解题报告

    题目链接:http://codeforces.com/problemset/problem/476/C 题目意思:给出两个数:a 和 b,要求算出 (x/b) / (x%b) == k,其中 k 的取 ...

  5. Codeforces Round #382 (Div. 2) 解题报告

    CF一如既往在深夜举行,我也一如既往在周三上午的C++课上进行了virtual participation.这次div2的题目除了E题都水的一塌糊涂,参赛时的E题最后也没有几个参赛者AC,排名又成为了 ...

  6. codeforces 507B. Amr and Pins 解题报告

    题目链接:http://codeforces.com/problemset/problem/507/B 题目意思:给出圆的半径,以及圆心坐标和最终圆心要到达的坐标位置.问最少步数是多少.移动见下图.( ...

  7. codeforces 500B.New Year Permutation 解题报告

    题目链接:http://codeforces.com/problemset/problem/500/B 题目意思:给出一个含有 n 个数的排列:p1, p2, ..., pn-1, pn.紧接着是一个 ...

  8. codeforces B. Xenia and Ringroad 解题报告

    题目链接:http://codeforces.com/problemset/problem/339/B 题目理解不难,这句是解题的关键 In order to complete the i-th ta ...

  9. codeforces 462C Appleman and Toastman 解题报告

    题目链接:http://codeforces.com/problemset/problem/461/A 题目意思:给出一群由 n 个数组成的集合你,依次循环执行两种操作: (1)每次Toastman得 ...

随机推荐

  1. kettle变量使用

    公司项目使用kettle重构之前的取数,先研究下日常的使用. 一.建立数据转换,表数据到表输出,其中表输入数据来自其他业务数据库,通过输入sql执行得到数据. 表输入: 表输出: 设置并行4个线程. ...

  2. JDK1.8和Spring 3.2.0 的坑

    上午 org.apache.catalina.core.StandardContext listenerStart严重: Exception sending context initialized e ...

  3. C#深入学习:泛型修饰符in,out、逆变委托类型和协变委托类型

    在C#中,存在两个泛型修饰符:in和out,他们分别对应逆变委托和协变委托. 我们知道,在C#中要想将一个泛型对象转换为另一个泛型对象时,必须要将一个泛型对象拆箱,对元素进行显式或隐式转换后重新装箱. ...

  4. OracleCPU使用情况查询

      1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 ...

  5. [Guava源代码阅读笔记]-Basic Utilities篇-1

    欢迎訪问:个人博客 写该系列文章的目的是记录Guava源代码中个人感觉不错且值得借鉴的内容. 一.MoreObjects类 //MoreObjects.ToStringHelper类的toString ...

  6. HashSet中存方用户自己定义数据类型数据,重写equals方法和hashCode方法

    import java.util.Set; import java.util.HashSet; public class SetTest { public static void main(Strin ...

  7. 怎样把多个Android Project打包成一个APK

    怎样把多个Android Project打包成一个APK(你的项目怎样引用其它项目). 怎样把多个android project 打包成一个apk呢,事实上原理是这种.一个主project引用其它的p ...

  8. soapUI学习笔记--用例字段参数化

    字段参数化的简单操作 1.把Request新增一个TestCase 增加TestCase,下方会出现: 2.案例中,请求参数只有一个.先运行下请求,可以运行成功(保证接口是通的) 3.添加参数.见图中 ...

  9. MFC小程序02————— 不规则窗体小应用程序

    什么不说了.先上程序截图: 执行结果是有一棵有星星在闪烁的圣诞树.还会循环播放背景音乐. 之前也是在网上看到类似的一个程序.然后自己近期也在学MFC.所以就模仿着写了一个, 当中使用的是GDI+来显示 ...

  10. 【C语言】求两个数中不同的位的个数

    //求两个数中不同的位的个数 #include <stdio.h> int count_different(int a, int b) { int count = 0; int c = a ...