Description

You play a strategic video game (yeah, we ran out of good problem legends). In this game you control a large army, and your goal is to conquer nnn castles of your opponent.

Let’s describe the game process in detail. Initially you control an army of kkk warriors. Your enemy controls n castles; to conquer the iii-th castle, you need at least ai warriors (you are so good at this game that you don’t lose any warriors while taking over a castle, so your army stays the same after the fight). After you take control over a castle, you recruit new warriors into your army — formally, after you capture the iii-th castle, bib_ibi​ warriors join your army. Furthermore, after capturing a castle (or later) you can defend it: if you leave at least one warrior in a castle, this castle is considered defended. Each castle has an importance parameter cic_ici​, and your total score is the sum of importance values over all defended castles. There are two ways to defend a castle:

if you are currently in the castle iii, you may leave one warrior to defend castle iii;

there are mmm one-way portals connecting the castles. Each portal is characterised by two numbers of castles uuu and vvv (for each portal holds u>vu>vu>v). A portal can be used as follows: if you are currently in the castle u, you may send one warrior to defend castle vvv.

Obviously, when you order your warrior to defend some castle, he leaves your army.

You capture the castles in fixed order: you have to capture the first one, then the second one, and so on. After you capture the castle iii

(but only before capturing castle i+1) you may recruit new warriors from castle iii, leave a warrior to defend castle iii, and use any number of portals leading from castle iii to other castles having smaller numbers. As soon as you capture the next castle, these actions for castle iii won’t be available to you.

If, during some moment in the game, you don’t have enough warriors to capture the next castle, you lose. Your goal is to maximize the sum of importance values over all defended castles (note that you may hire new warriors in the last castle, defend it and use portals leading from it even after you capture it — your score will be calculated afterwards).

Can you determine an optimal strategy of capturing and defending the castles?

Input

The first line contains three integers n,mandk(1≤n≤5000,0≤m≤min(n(n−1)2,3⋅105),0≤k≤5000n, m and k (1≤n≤5000, 0≤m≤min(\frac{n(n−1)}{2},3⋅10^5), 0≤k≤5000n,mandk(1≤n≤5000,0≤m≤min(2n(n−1)​,3⋅105),0≤k≤5000) — the number of castles, the number of portals and initial size of your army, respectively.

Then nnn lines follow. The iii-th line describes the iii-th castle with three integers aia_iai​, bib_ibi​ and ci(0≤ai,bi,ci≤5000)c_i (0≤a_i,b_i,c_i≤5000)ci​(0≤ai​,bi​,ci​≤5000) — the number of warriors required to capture the iii -th castle, the number of warriors available for hire in this castle and its importance value.

Then mmm lines follow. The iii-th line describes the iii-th portal with two integers uiu_iui​ and vi(1≤vi<ui≤n)v_i (1≤v_i<u_i≤n)vi​(1≤vi​<ui​≤n), meaning that the portal leads from the castle uiu_iui​ to the castle viv_ivi​. There are no two same portals listed.

It is guaranteed that the size of your army won’t exceed 5000 under any circumstances (i. e. k+∑i=1nbi≤5000k+∑_{i=1}^{n}b_i≤5000k+∑i=1n​bi​≤5000).

Output

If it’s impossible to capture all the castles, print one integer −1−1−1.

Otherwise, print one integer equal to the maximum sum of importance values of defended castles.

题意

按顺序占领1−n1-n1−n所有城堡,可以选择在该城堡刚被占领时留下一个士兵获得权值,也可以通过u,vu,vu,v单向边来在后面占领该城堡获得权值。

思路


update at 19/12/19

之前的做法过于混乱(甚至我自己都觉得像是瞎蒙的),因此借鉴了其他神犇的题解仔细思考后发现可以使用反悔型贪心来做这道题。

思路为:

一路扫过去,每次都假定留守所有可留守的点,发现当前的士兵不够则从已留守的点中选取权值最小的放弃留守。

依然是基于 靠后留守更优 策略,预处理出每个点可留守的集合,遍历到该点直接将可留守的全部push到已留守集合中,再遍历下一个点。 在遍历点过程中发现士兵不够,pop已留守集合,如果pop空了还不够,说明游戏失败。

代码一起放到后面了。自我感觉注释够详细了。


能不能占领完城堡很好判断,只需要每次都取光士兵而不留守扫一遍,如果这种情况下都有无法占领的城堡,那一定没法占领完。

如果要留守城堡iii,那么一定是在最后留守最好。

因此可以开一个lastlastlast数组,last[i]last[i]last[i]标记要留守iii的最晚位置是哪里。

现在开始思考留守的实质:如果在位置iii留守,就是使区间[last[i]+1,n][last[i]+1,n][last[i]+1,n]的可用士兵数量减少111。

我们要保证这段位置的可用士兵数量减少111之后还能占领所有的城堡。

于是有:

inline bool check(const int &p)
{
for(int i = p;i<=n;++i)
if(a[i] + 1 > d[i])//d[i]代表占领i前的可用士兵数量
return false;
return true;
}

随后思考要怎么选择留守哪些城堡。可以发现,贪心地留守权值大的城堡一定是最优的。

因为留守一个城堡影响的是[last[i]+1,n][last[i]+1,n][last[i]+1,n]整个区间,我们可以讨论:

如果c[i1]>c[i2]c[i1] > c[i2]c[i1]>c[i2],且last[i1]<last[i2]last[i1] < last[i2]last[i1]<last[i2],即i1i1i1的权值比i2i2i2大,有3种情况:

1.[last[i1]+1,n]的区间全部减去2个士兵后依然能占领所有城堡。那么就是i1i1i1和i2i2i2都留守的情况,此时操作顺序不会影响结果。

2.[last[i1]+1,last[i2]]的区间减去1个士兵能满足,[last[i2]+1,n]减去2个士兵能满足,由于我们先处理权值大的,处理完i1i1i1后还能处理i2i2i2,也可以得到正确答案。

3.[last[i1]+1,n]的区间减去1个士兵能满足,此时i1i1i1与i2i2i2只能选择一个,那么肯定是选取i1i1i1好。

选取i1i1i1和i2i2i2的区别就在于[last[i1]+1,last[i2]][last[i1]+1,last[i2]][last[i1]+1,last[i2]]这段区间,是否会对结果造成影响呢?

我们将选择i1i1i1看做消耗[last[i1]+1,last[i2]][last[i1]+1,last[i2]][last[i1]+1,last[i2]]和[last[i2]+1,n][last[i2]+1,n][last[i2]+1,n]内的士兵数量。

假定有一个i3i3i3的选择,,且c[i3]<c[i1]c[i3] < c[i1]c[i3]<c[i1],如果last[i3]>last[i2]last[i3] > last[i2]last[i3]>last[i2],很显然选择i1i1i1和i2i2i2是等效的。

如果last[i3]<last[i1]last[i3] < last[i1]last[i3]<last[i1],那么选取i3i3i3的代价比选取i1i1i1更大且得利更少,因此此时先选择i1i1i1可以保证整体更优。

如果last[i3]在[last[i1+1],last[i2]]last[i3]在[last[i1+1],last[i2]]last[i3]在[last[i1+1],last[i2]]之间,若选i1i1i1后还能选i3i3i3则肯定选i1i1i1,若选i1i1i1后不能选i3i3i3,那么选i3i3i3后肯定也不能选i1i1i1,但c[i3]<c[i1]c[i3] < c[i1]c[i3]<c[i1],因此可能情况下还是选i1i1i1更好。

另外,若c[i1]>c[i2]c[i1] > c[i2]c[i1]>c[i2]且last[i1]>last[i2]last[i1] > last[i2]last[i1]>last[i2],很显然此时选择i1比选择i2好。

可能写的有点乱……

Code

#include <cstdio>
#include <algorithm>
template <typename T> inline T max(const T &a,const T &b){return a>b?a:b;}
inline char nc()
{
static char buf[1000000],*p1 = buf,*p2 = buf;
return p1==p2&&(p2=(p1=buf)+fread(buf,1,1000000,stdin),p1==p2)?EOF:*p1++;
}
void read(int &r)
{
static char c;r=0;
for(c=nc();c>'9'||c<'0';c=nc());
for(;c>='0'&&c<='9';r=(r<<1)+(r<<3)+(c^48),c=nc());
}
int n,m,k;
int last[5001];//last[i]保存i点最晚能在哪里被派兵守卫
int a[5001],b[5001],c[5001],d[5001];//d[i]代表占领i前到达i这里的兵力
int q[5001];
bool cmp(const int &a,const int &b)
{
return c[a] > c[b];
}
inline bool check(const int &p)
{
for(int i = p;i<=n;++i)
if(a[i] + 1 > d[i])
return false;
return true;
}
int main()
{
read(n);
read(m);
read(k);
int now = k;//现在兵力
for(int i = 1;i<=n;++i)
{
read(a[i]);
read(b[i]);
read(c[i]);
d[i] = now;
if(now < a[i])
{
printf("-1");
return 0;
}
now += b[i];//顺便判断是否能占领所有城堡,也就是判断每次取完兵能否一路全部占领
q[i] = last[i] = i;
}
int u,v;
for(;m;--m)
{
read(u);
read(v);
last[v] = max(last[v],u);
}
std::sort(q+1,q+1+n,cmp);//按照贡献值排序
int ans = 0;
for(int i = 1;i<=n;++i)
{
if(check(last[q[i]] + 1))
{
for(int j = last[q[i]] + 1;j<=n;++j)
--d[j];
ans += c[q[i]];
}
}
printf("%d",ans);
return 0;
}

这里是反悔贪心的代码:

#include <cstdio>
#include <queue>
#include <vector>
using namespace std;
//读入优化
inline char nc()
{
static char buf[100000], *p1 = buf, *p2 = buf;
return p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 100000, stdin), p1 == p2) ? EOF : *p1++;
}
template <typename T>
inline void read(T &r)
{
static char c;r = 0;
for (c = nc(); c > '9' || c < '0'; c = nc());
for (; c >= '0' && c <= '9'; r = (r << 1) + (r << 3) + (c ^ 48), c = nc());
}
const int maxn = 5e3 + 10;
int n, m, k, ans;
int a[maxn], b[maxn], c[maxn];
int last[maxn]; //last[i]记录i最后能在哪里被留守
priority_queue<int, vector<int>, greater<int>> q;
vector<int> defback[maxn]; //存储该点可以向前留守什么点
int main()
{
read(n);
read(m);
read(k);
for (int i = 1; i <= n; ++i)
{
read(a[i]);
read(b[i]);
read(c[i]);
last[i] = i; //初始化
}
int u, v;
for (; m; --m)
{
read(u);
read(v);
last[v] = last[v] > u ? last[v] : u; //取更大者,因为越后留守一定越好
}
for (int i = 1; i <= n; ++i)
defback[last[i]].push_back(i);
for (int i = 1; i <= n; ++i)
{
while (k < a[i] && !q.empty()) //不够的话,从已留守的城堡中取出权值最小的放弃,即反悔
++k, q.pop();
//defended[q.top()] = false; 事实上并不需要对是否已经留守做标记,因为所有点最多会被判断留守一次,也就是最多被标true false一次 if (k < a[i]) //如果取完还是不够,那没办法了,输出-1
goto fail; //占领当前点
k += b[i];
//往前留守,这里不用考虑当前点,因为当前点要么也在vector中,要么在后面可以被留守
for (vector<int>::iterator it = defback[i].begin(); it != defback[i].end(); ++it)
--k, q.push(c[*it]); //可以直接全部push到留守集合中,等后面再反悔,不用考虑会不会让k<0
}
//最后一步后还要判断k是否大于0进行一次反悔
while (k < 0 && !q.empty())
++k, q.pop();
if (k < 0)
goto fail;
while (!q.empty())//统计已留守点的权值和
ans += q.top(), q.pop();
printf("%d", ans);
return 0;
fail:
puts("-1");
return 0;
}

[Codeforces #608 div2]1271D Portals的更多相关文章

  1. [Codeforces #608 div2]1271C Shawarma Tent

    Description The map of the capital of Berland can be viewed on the infinite coordinate plane. Each p ...

  2. [Codeforces #608 div2]1272B Blocks

    Description There are nnn blocks arranged in a row and numbered from left to right, starting from on ...

  3. [Codeforces #608 div2]1271A Suits

    Description A new delivery of clothing has arrived today to the clothing store. This delivery consis ...

  4. Codeforces #180 div2 C Parity Game

    // Codeforces #180 div2 C Parity Game // // 这个问题的意思被摄物体没有解释 // // 这个主题是如此的狠一点(对我来说,),不多说了这 // // 解决问 ...

  5. Codeforces #541 (Div2) - E. String Multiplication(动态规划)

    Problem   Codeforces #541 (Div2) - E. String Multiplication Time Limit: 2000 mSec Problem Descriptio ...

  6. Codeforces #541 (Div2) - F. Asya And Kittens(并查集+链表)

    Problem   Codeforces #541 (Div2) - F. Asya And Kittens Time Limit: 2000 mSec Problem Description Inp ...

  7. Codeforces #541 (Div2) - D. Gourmet choice(拓扑排序+并查集)

    Problem   Codeforces #541 (Div2) - D. Gourmet choice Time Limit: 2000 mSec Problem Description Input ...

  8. Codeforces #548 (Div2) - D.Steps to One(概率dp+数论)

    Problem   Codeforces #548 (Div2) - D.Steps to One Time Limit: 2000 mSec Problem Description Input Th ...

  9. 【Codeforces #312 div2 A】Lala Land and Apple Trees

    # [Codeforces #312 div2 A]Lala Land and Apple Trees 首先,此题的大意是在一条坐标轴上,有\(n\)个点,每个点的权值为\(a_{i}\),第一次从原 ...

随机推荐

  1. java 日志的数据脱敏

    思路 1.在 model层进行处理,直接重写get方法,在写一个getPlain 获取明文方法.(缺点:数据库写入和json序列化传递时使用的都是密文) 2.利用 日志组件过滤 特定的key,去进行脱 ...

  2. Install fail! Error: EBUSY: resource busy or locked, symlink

    前些日子从github上下载了一个项目 然后放在桌面上  ,但是运行的时候 报了Install fail! Error: EBUSY: resource busy or locked, symlink ...

  3. html5或者移动端暴力定位城市-高德地图,可以取到当前的城市code,亲测好用

    复制 粘贴到html中打开!!!!! <!doctype html> <html> <head> <meta charset="utf-8" ...

  4. 浅谈SPFA——洛谷P1576 最小花费 题解

    想找原题请点击这里:传送门 原题: 题目描述 在n个人中,某些人的银行账号之间可以互相转账.这些人之间转账的手续费各不相同.给定这些人之间转账时需要从转账金额里扣除百分之几的手续费,请问A最少需要多少 ...

  5. LVS负载均衡软件使用及(LVS简介、三种工作模式、十种调度算法)

    一.LVS简介 LVS(Linux Virtual Server)即Linux虚拟服务器,目前LVS已经被集成到Linux内核模块中.该项目在Linux内核中实现了基于IP的数据请求负载均衡调度方案, ...

  6. Faster-RCNN Pytorch实现的minibatch包装

    实际上faster-rcnn对于输入的图片是有resize操作的,在resize的图片基础上提取feature map,而后generate一定数量的RoI. 我想首先去掉这个resize的操作,对每 ...

  7. 改写画质、突破性能, Unity 全面升级!

    技术变革,时代更迭.从<神庙逃亡>.<暗影之枪>等主流手游到独立联网的大型游戏,从绚丽多彩的影视动画到具备极致体验的运输建筑制造行业,从传统的2D 到立体3D 乃至沉浸式的VR ...

  8. HTML、HTML5重难点

    一.XHTML与HTML的区别 文档结构 XHTML DOCTYPE 是强制性的 <html>中的 XML namespace 属性是强制性的 <html>.<head& ...

  9. javascript入门教程01

    1.javascript中变量的声明和赋值的三种方式 (1)先声明后赋值 var width; width=5; (2)同时声明和赋值变量 var width=5; var x,y,z=10; (3) ...

  10. 什么是 SDK?

    通俗而言: 1.其实很简单,SDK 就是 Software Development Kit 的缩写,中问意思是: 软件开发工具包. 2.这是一个覆盖面相当广泛的名词,可以这么说: 辅助开发某一类软件的 ...