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的更多相关文章

  1. Windows 10:解决开机显示C:\WINDOWS\system32\config\systemprofile\Desktop不可用的方法

      开机显示C:\WINDOWS\system32\config\systemprofile\Desktop不可用应该是不少网友都遇到过. 近日在使用Windows 10 Build 9926中,也出 ...

  2. 【译】ASP.NET MVC 5 教程 - 10:添加验证

    原文:[译]ASP.NET MVC 5 教程 - 10:添加验证 在本节中,我们将为Movie模型添加验证逻辑,并确认验证规则在用户试图使用程序创建和编辑电影时有效. DRY 原则 ASP.NET M ...

  3. Bootstrap入门(十六)组件10:well和具有响应式特性的嵌入内容

    Bootstrap入门(十六)组件10:well和具有响应式特性的嵌入内容 well组件可以为内容增添一种切入效果. 具有响应式特性的嵌入内容可以根据被嵌入内容的外部容器的宽度,自动创建一个固定的比例 ...

  4. RTMPdump(libRTMP) 源代码分析 10: 处理各种消息(Message)

    ===================================================== RTMPdump(libRTMP) 源代码分析系列文章: RTMPdump 源代码分析 1: ...

  5. sed:-e 表达式 #1,字符 10:未终止的“s”命令

    执行shell脚本时,使用sed变量替换指定的字符串,一直出现这个错误: [root@bqh-118 scripts]# vim while_rz.sh [root@bqh-118 scripts]# ...

  6. Module 10:I/O流(java如何实现与外界数据的交流)

    Module 10:I/O流(java如何实现与外界数据的交流) Input/Output:指跨越出了JVM的边界,与外界数据的源头或者目标数据源进行数据交换.               输出   ...

  7. Window 10 :我的性能优化:那效果,杠杠的!

    微软的 windows 10,不错! 当全新安装后,性能总觉得别别扭扭,不那么干净利落. 下面就是我的个人优化措施,期间有很多技术性的操作,如果你没有动手能力,或者是技术小白,可以不用再看了! (1) ...

  8. Window 10 :如何彻底关闭:Windows Defender Service(2015-12-20日更新)

    Window 10 :如何彻底关闭:Windows Defender Service? 网上流传的什么组策略gpeidt.msc方法,什么安装其他的杀软之类的方法都很麻烦,且有弊病! 其实很简单: 利 ...

  9. 搞懂分布式技术10:LVS实现负载均衡的原理与实践

    搞懂分布式技术10:LVS实现负载均衡的原理与实践 浅析负载均衡及LVS实现 原创: fireflyc 写程序的康德 2017-09-19 负载均衡 负载均衡(Load Balance,缩写LB)是一 ...

随机推荐

  1. BestCoder6 1002 Goffi and Squary Partition(hdu 4982) 解题报告

    题目链接:http://bestcoder.hdu.edu.cn/contests/contest_showproblem.php?pid=1002&cid=530 (格式有一点点问题,直接粘 ...

  2. match_parent 、 fill_parent 、 wrap_content

    1)fill_parent 设置一个构件的布局为fill_parent将强制性地使构件扩展,以填充布局单元内尽可能多的空间.这跟Windows控件的dockstyle属性大体一致. 设置一个顶部布局或 ...

  3. 异步执行js脚本——防止阻塞

    JS允许我们修改页面中的所有方面:内容,样式和用户进行交互时的行为. 但是js同样可以阻塞DOM树的形成并且延迟页面的渲染. 让你的js变成异步执行,并且减少不必要的js文件从而提高性能. JavaS ...

  4. 进程优先级、nice值

    进程cpu资源分配就是指进程的优先权(priority).优先权高的进程有优先执行权利.配置进程优先权对多任务环境的linux很有用,可以改善系统性能.还可以把进程运行到指定的CPU上,这样一来,把不 ...

  5. HDU3157 Crazy Circuits

    传送门 有源汇的上下界网络流求最小流. 这个其实和上道题差不多--题目描述我没怎么看明白--好像就是让你按照他说的把图建出来就行了,注意这个题的字符处理,可能有长度大于1的字符串,要注意一下.求最小流 ...

  6. P2647 最大收益

    题目描述 现在你面前有n个物品,编号分别为1,2,3,……,n.你可以在这当中任意选择任意多个物品.其中第i个物品有两个属性Wi和Ri,当你选择了第i个物品后,你就可以获得Wi的收益:但是,你选择该物 ...

  7. robotium

    Test run failed: Permission Denial: starting instrumentation ComponentInfo{android.support.v7.appcom ...

  8. Java应用架构设计模块化模式与OSGI摘录

    在Java中,最适合模块化的单元就是Jar文件. 代码层面我们关注的太多了,熟练的开发人员现在很少争论使用模式的好处,也不再识别哪个模式适合当前需要,因为都能够本能地使用各种设计原则和模式,从GoF的 ...

  9. lsyncd实时同步搭建指南——取代rsync+inotify

    1. 几大实时同步工具比较 1.1 inotify + rsync 最近一直在寻求生产服务服务器上的同步替代方案,原先使用的是inotify + rsync,但随着文件数量的增大到100W+,目录下的 ...

  10. mybatis 优缺点和适用场合

    MyBatis 是支持定制化 SQL.存储过程以及高级映射的优秀的持久层框架, MyBatis 避免了几乎所有的 JDBC 代码和手动设置参数以及获取结果集.MyBatis 可以对配置和原生Map使用 ...