码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ1218 [HNOI2003]激光炸弹

时间:2014-09-28 20:34:25      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   sp   

题目后面写着DP就当它是DP吧。。

本来是扫描线+线段树的说,但是捏5000^2还是能过滴,于是暴力枚举正方形+所谓的DP就解决了。

bubuko.com,布布扣
 1 #include <cstdio>
 2 #include <cmath>
 3 #include <algorithm>
 4 
 5 using namespace std;
 6 
 7 int a[5005][5005];
 8 
 9 int main(){
10     int n, R, x, y, c, i, j, ans = 0, maxc = 5002;
11     scanf("%d%d", &n ,&R);
12     while (n--){
13         scanf("%d%d%d", &x, &y, &c);
14         a[x + 1][y + 1] = c;
15     }
16     for (int i = 1; i < maxc; ++i)
17         for (int j = 1; j < maxc; ++j)
18             a[i][j] += a[i - 1][j] + a[i][j - 1] - a[i - 1][j - 1];
19     maxc -= R;
20     for (int i = 0; i < maxc; ++i)
21         for (int j = 0; j < maxc; ++j)
22             ans = max(ans, a[i + R][j + R] + a[i][j] - a[i + R][j] - a[i][j + R]);
23     printf("%d\n", ans);        
24     return 0;    
25 }
View Code

 

BZOJ1218 [HNOI2003]激光炸弹

标签:style   blog   http   color   io   os   ar   for   sp   

原文地址:http://www.cnblogs.com/rausen/p/3998810.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!