#10:wannanewtry——6
HDU3401,列完转移方程拆分一下,正着、反着跑优先队列优化代表买或卖。初始化不大会搞……
#include <bits/stdc++.h>
using namespace std; const int inf = 0x3f3f3f3f;
const int maxn = ;
int T, n, maxp, w;
int ap, bp, as, bs;
int f[maxn][maxn];
int q[maxn], v[maxn]; int DP() {
for (int j = ; j <= maxp; j++)
f[][j] = -inf;
for (int i = ; i <= w+; i++) {
scanf("%d%d%d%d", &ap, &bp, &as, &bs); for (int j = ; j <= maxp; j++) {
if (j <= as) f[i][j] = -j*ap;
else f[i][j] = -inf;
f[i][j] = max(f[i][j], f[i-][j]);
}
}
for (int i = w+; i <= n; i++) {
scanf("%d%d%d%d", &ap, &bp, &as, &bs); int l = , r = ;
for (int j = ; j <= maxp; j++) {
f[i][j] = f[i-][j];
while (l <= r && f[i-w-][j] + j*ap > v[r]) r--;
q[++r] = j;
v[r] = f[i-w-][j] + j*ap; while (l <= r && q[l] < j-as) l++;
if (l <= r) f[i][j] = max(f[i][j], v[l]-j*ap);
} l = , r = ;
for (int j = maxp; ~j; j--) {
while (l <= r && f[i-w-][j] + j*bp > v[r]) r--;
q[++r] = j;
v[r] = f[i-w-][j] + j*bp; while (l <= r && q[l] > j+bs) l++;
if (l <= r) f[i][j] = max(f[i][j], v[l]-j*bp);
}
}
return f[n][];
} int main() {
for (cin >> T; T; T--) {
cin >> n >> maxp >> w;
cout << DP() << endl;
}
return ;
}
为了少一些痛苦自闭,蒟蒻只好写几道cf水题。
#include <bits/stdc++.h>
using namespace std; int n; int main() {
while (cin >> n) {
int m = n/;
for (int i = m; i; i--)
if (__gcd(i, n-i) == ) {
printf("%d %d\n", i, n-i);
break;
}
}
return ;
}
854A
#include <bits/stdc++.h>
using namespace std; int n, k; int main() {
while (cin >> n >> k) {
if (k > && k < n)
printf("1 ");
else printf("0 "); printf("%d\n", min(n - k, *k));
}
return ;
}
854B
优先队列乱模拟一下:
#include <bits/stdc++.h>
using namespace std; typedef pair<int, int> P;
int n, k;
priority_queue<P> Q;
set<int> minute;
set<int>::iterator it;
int v[];
long long ans; int main() {
cin >> n >> k;
for (int i = ; i <= n; i++) {
int cost;
scanf("%d", &cost);
Q.push(P(cost, i));
minute.insert(i+k);
} for (int i = ; i <= n; i++) {
auto t = Q.top(); Q.pop();
int k1 = t.second;
if (k1 < k) k1 = k;
it = minute.lower_bound(k1);
v[t.second] = *it;
ans += (long long)(*it - t.second) * t.first;
minute.erase(it);
} cout << ans << endl;
for (int i = ; i <= n; i++)
printf("%d ", v[i]);
return ;
}
853A
差分预处理,枚举区间:
#include <bits/stdc++.h>
#define ll long long
#define ri readint()
#define gc getchar()
#define pb push_back
#define P pair<int, int>
using namespace std; const ll INF = 1e13;
const int maxn = ;
const int maxday = ; int n, m, k;
ll f[maxn];
ll s[maxday+], t[maxday+];
vector<int> from[maxday+], to[maxday+], cost[maxday+]; inline int readint() {
int x = , s = , c = gc;
while (c <= ) c = gc;
if (c == '-') s = -, c = gc;
for (; isdigit(c); c = gc)
x = x* + c - ;
return x * s;
} void init(ll *x, int k) {
for (int i = ; i <= n; i++)
f[i] = INF;
x[k] = INF*n;
} int main() {
cin >> n >> m >> k;
for (int i = ; i < m; i++) {
int day = ri, f = ri, t = ri, c = ri;
from[day].pb(f);
to[day].pb(t);
cost[day].pb(c);
} init(s, );
for (int i = ; i <= maxday; i++) {
s[i] = s[i-];
for (int j = ; j < from[i].size(); j++) {
if (to[i][j] == && cost[i][j] < f[from[i][j]]) {
s[i] -= f[from[i][j]] - cost[i][j];
f[from[i][j]] = cost[i][j];
}
}
}
init(t, maxday+);
for (int i = maxday; i; i--) {
t[i] = t[i+];
for (int j = ; j < from[i].size(); j++) {
if (from[i][j] == && cost[i][j] < f[to[i][j]]) {
t[i] -= f[to[i][j]] - cost[i][j];
f[to[i][j]] = cost[i][j];
}
}
} ll ans = INF;
for (int i = ; i + k <= maxday; i++)
ans = min(ans, s[i-] + t[i+k]);
if (ans > 1e12) puts("-1");
else cout << ans << endl; return ;
}
853B
BZOJ1010,斜率优化dp经典题,推式子很重要,设定不同的函数做法也会有难易区分。
#include <bits/stdc++.h>
#define db double
#define maxn 50005
using namespace std; int n, L;
int head, tail;
int q[maxn];
db sum[maxn], f[maxn]; db sqr(db x) {
return x * x;
}
db a(int i) {//斜率单调的
return sum[i] + i;
}
db b(int i) {
return sum[i] + i + L + ;
}
db Y(int i) {
return f[i] + sqr(b(i));
}
db slope(int i, int j) {
return (Y(j) - Y(i)) / (b(j) - b(i));
} int main() {
cin >> n >> L;
for (int i = ; i <= n; i++) {
scanf("%lf", &sum[i]);
sum[i] += sum[i-];
}
head = , tail = ;
for (int i = ; i <= n; i++) {
while (head < tail && slope(q[head], q[head+]) < *a(i)) head++;
f[i] = f[q[head]] + sqr(a(i) - b(q[head])); while (head < tail && slope(q[tail-], q[tail]) > slope(q[tail-], i)) tail--;
q[++tail] = i;
}
cout << fixed << setprecision() << f[n] << endl;
return ;
}
#10:wannanewtry——6的更多相关文章
- Windows 10:解决开机显示C:\WINDOWS\system32\config\systemprofile\Desktop不可用的方法
开机显示C:\WINDOWS\system32\config\systemprofile\Desktop不可用应该是不少网友都遇到过. 近日在使用Windows 10 Build 9926中,也出 ...
- 【译】ASP.NET MVC 5 教程 - 10:添加验证
原文:[译]ASP.NET MVC 5 教程 - 10:添加验证 在本节中,我们将为Movie模型添加验证逻辑,并确认验证规则在用户试图使用程序创建和编辑电影时有效. DRY 原则 ASP.NET M ...
- Bootstrap入门(十六)组件10:well和具有响应式特性的嵌入内容
Bootstrap入门(十六)组件10:well和具有响应式特性的嵌入内容 well组件可以为内容增添一种切入效果. 具有响应式特性的嵌入内容可以根据被嵌入内容的外部容器的宽度,自动创建一个固定的比例 ...
- RTMPdump(libRTMP) 源代码分析 10: 处理各种消息(Message)
===================================================== RTMPdump(libRTMP) 源代码分析系列文章: RTMPdump 源代码分析 1: ...
- sed:-e 表达式 #1,字符 10:未终止的“s”命令
执行shell脚本时,使用sed变量替换指定的字符串,一直出现这个错误: [root@bqh-118 scripts]# vim while_rz.sh [root@bqh-118 scripts]# ...
- Module 10:I/O流(java如何实现与外界数据的交流)
Module 10:I/O流(java如何实现与外界数据的交流) Input/Output:指跨越出了JVM的边界,与外界数据的源头或者目标数据源进行数据交换. 输出 ...
- Window 10 :我的性能优化:那效果,杠杠的!
微软的 windows 10,不错! 当全新安装后,性能总觉得别别扭扭,不那么干净利落. 下面就是我的个人优化措施,期间有很多技术性的操作,如果你没有动手能力,或者是技术小白,可以不用再看了! (1) ...
- Window 10 :如何彻底关闭:Windows Defender Service(2015-12-20日更新)
Window 10 :如何彻底关闭:Windows Defender Service? 网上流传的什么组策略gpeidt.msc方法,什么安装其他的杀软之类的方法都很麻烦,且有弊病! 其实很简单: 利 ...
- 搞懂分布式技术10:LVS实现负载均衡的原理与实践
搞懂分布式技术10:LVS实现负载均衡的原理与实践 浅析负载均衡及LVS实现 原创: fireflyc 写程序的康德 2017-09-19 负载均衡 负载均衡(Load Balance,缩写LB)是一 ...
随机推荐
- Android加载/处理超大图片神器!SubsamplingScaleImageView(subsampling-scale-image-view)【系列1】
Android加载/处理超大图片神器!SubsamplingScaleImageView(subsampling-scale-image-view)[系列1] Android在加载或者处理超大巨型图片 ...
- linux下syslog使用说明
转自:http://blog.chinaunix.net/uid-25120309-id-3359929.html syslog 系统日志应用 1) 概述 syslog是Linux系统默 ...
- 【C++】私有数据成员不能用对象去访问吗
首先,必须清楚的是private和public限定的是类而不是对象.因此,在成员函数中访问同类对象的私有成员是完全可以的. 所以,某些教材上所说的“私有数据成员不能用对象去访问”是欠妥当的. 比如,如 ...
- tyvj2044 旅游景点
背景 “扫地”杯III NOIP2012模拟赛 day2 第二题 描述 liouzhou_101住在柳侯公园附近,闲暇时刻都会去公园散散步.很那啥的就是,柳侯公园的道路太凌乱了,假若不认识路就会走着走 ...
- C++ 两款静态检查工具
pclint(收费) http://www.gimpel.com/html/pcl.htmpc-lint是资格最老,最强力的代码检查工具,但是是收费软件,并且配置起来有一点点麻烦. ccpchecke ...
- C++之引用&的详解
C++中的引用: 引用引入了对象的一个同义词.定义引用的表示方法与定义指针相似,只是用&代替了*.引用(reference)是c++对c语言的重要扩充.引用就是某一变量(目标)的一个别名,对引 ...
- MTK HDMI 流程
一.HDMI初始化 1. kernel-3.18/drivers/misc/mediatek/ext_disp/mtk_extd_mgr.c static int __init mtk_extd_mg ...
- 蓝桥杯 2014本科C++ B组 李白打酒 三种实现方法 枚举/递归
标题:李白打酒 话说大诗人李白,一生好饮.幸好他从不开车. 一天,他提着酒壶,从家里出来,酒壶中有酒2斗.他边走边唱: 无事街上走,提壶去打酒. 逢店加一倍,遇花喝一斗. 这一路上,他一共遇到店5次, ...
- 《Kubernetes权威指南第2版》学习(二)一个简单的例子
1: 安装VirtualBox, 并下载CentOS-7-x86_64-DVD-1708.iso, 安装centOS7,具体过程可以百度. 2:开启centOS的SSH, 步骤如下: (1) yum ...
- C语言指针入门知识
C语言指针往往是C语言学习过程中最困难的地方, 最近重新理解了一下C语言的指针知识, 在此整理一下, 如果有错误请留言指正. 对于刚入门的人来说, 指针涉及方方面面, 从简单的数组到结构体, 都会用到 ...