[计蒜客] ACM-ICPC 2018 南京赛区网络预赛 | 部分题解 | 线段树 + 线性筛 + 最短路(上)

简介: E. AC Challenge题目描述输入输出样例输入样例输出提示题意:A. An Olympian Math ProblemG. Lpl and Energy-saving Lamps题目描述输入输出样例输入样例输出提示ac_code:

E. AC Challenge


题目描述


Dlsj is competing in a contest with n (0 < n <= 20) problems. And he knows the answer of all of these problems.


However, he can submit i-th problem if and only if he has submitted (and passed, of course) si problems, the pi,1-th, pi,2-th, …, pi,si-th problem before.(0<pi,j≤n,0<j≤si,0<i≤n) After the submit of a problem, he has to wait for one minute, or cooling down time to submit another problem. As soon as the cooling down phase ended, he will submit his solution (and get “Accepted” of course) for the next problem he selected to solve or he will say that the contest is too easy and leave the arena.


“I wonder if I can leave the contest arena when the problems are too easy for me.”

“No problem.”

—— CCF NOI Problem set


If he submits and passes the i-th problem on t-th minute(or the t-th problem he solve is problem i), he can get t×ai + bi points. (|ai |,|bi |≤109)


Your task is to calculate the maximum number of points he can get in the contest.


输入


The first line of input contains an integer, n, which is the number of problems.

Then follows n lines, the i-th line contains si + 3 integers, ai,bi,si,p1,p2,…,psi as described in the description above.


输出


Output one line with one integer, the maximum number of points he can get in the contest.


样例输入


case1

5
5 6 0
4 5 1 1
3 4 1 2
2 3 1 3
1 2 1 4


case2

1
-100 0 0


样例输出


case1

55


case2

0


提示


In the first sample.

On the first minute, Dlsj submitted the first problem, and get 1×5+6=11 points.

On the second minute, Dlsj submitted the second problem, and get 2×4+5=13 points.

On the third minute, Dlsj submitted the third problem, and get 3×3+4=13 points.

On the forth minute, Dlsj submitted the forth problem, and get 4×2+3=11 points.

On the fifth minute, Dlsj submitted the fifth problem, and get 5×1+2=7 points.

So he can get 11+13+13+11+7=55 points in total.


In the second sample, you should note that he doesn’t have to solve all the problems.


题意:


有n个作业,每个作业都有两个属性值a,b,以及完成这个任务之前必须要完成其他的任务prei 然后完成一个作业获得的分数为 a*time + b,其中 time 为完成该任务的时间,问做多可以获取多少分数


刚看到这个题的时候以为是前一天遇到的那个题的类似版本,然后就用拓扑排序写了一下,然后根据在拓扑排序过程中的度数变化情况来对图进行分层次,然后对于每一个层次进行相应的操作。本来对同一个层次的作业进行贪心,按照a升序,b升序。可是这样子是不对的,因为有个变量(完成该任务的时间),所以这里就没有办法做了,思路gg

这道题也是非常的坎坷:

d15c72b89c5543f5bfe0b9689bae60d7.png


正确方法:状压dp

int getOne(ll x) {
  int ret = 0;
  while(x) {
    ret ++;
    x &= (x - 1);
  }
  return ret;
}
ll a[30],b[30];
ll c[30];
int n;
ll dp[maxn << 1];
int main() {
//  cout << getOne(15) << endl;
//  cout << (1LL<<63) << endl;
  n = read;
  for(int i=0; i<=n-1; i++) {
    a[i] = read,b[i] = read;
    int t = read;
    while(t --) {
      ll x = read;
      -- x;
      c[i] |= (1LL << x);
    }
  }
  ll ans = 0LL;
  ll lim = 1LL << n;///total 2 ** n;
  dp[0] = 0LL;
  for(int i=1; i<=lim; i++) dp[i] = inf_1;
  for(ll i=1; i<=lim-1; i++) {
//    dp[i] = 1<<31;
    for(ll j=0; j<n; j++) {
      if(!(i & (1LL << j))) continue;
      ll pre = i ^ (1LL << j);
//      debug(pre);
      if(dp[pre] == inf_1) continue;///pre status is -inf
      if((pre | c[j]) == pre) {/// pre has done
        ll time = getOne(i);
        ll val = dp[pre] + a[j] * time + b[j];
        dp[i] = max(dp[i],val);
      }
    }
  }
  for (int i=1; i<=lim; i++) {
    ans = max(ans,dp[i]);
  }
  cout << ans << endl;
  return 0;
}


A. An Olympian Math Problem


规律题,输入x xx,输出x − 1 x-1x−1


G. Lpl and Energy-saving Lamps


题目描述


During tea-drinking, princess, amongst other things, asked why has such a good-natured and cute Dragon imprisoned Lpl in the Castle? Dragon smiled enigmatically and answered that it is a big secret. After a pause, Dragon added:

— We have a contract. A rental agreement. He always works all day long. He likes silence. Besides that, there are many more advantages of living here in the Castle. Say, it is easy to justify a missed call: a phone ring can’t reach the other side of the Castle from where the phone has been left. So, the imprisonment is just a tale. Actually, he thinks about everything. He is smart. For instance, he started replacing incandescent lamps with energy-saving lamps in the whole Castle…

Lpl chose a model of energy-saving lamps and started the replacement as described below. He numbered all rooms in the Castle and counted how many lamps in each room he needs to replace.


At the beginning of each month, Lpl buys m energy-saving lamps and replaces lamps in rooms according to his list. He starts from the first room in his list. If the lamps in this room are not replaced yet and Lpl has enough energy-saving lamps to replace all lamps, then he replaces all ones and takes the room out from the list. Otherwise, he ‘ll just skip it and check the next room in his list. This process repeats until he has no energy-saving lamps or he has checked all rooms in his list. If he still has some energy-saving lamps after he has checked all rooms in his list, he’ll save the rest of energy-saving lamps for the next month.

As soon as all the work is done, he ceases buying new lamps. They are very high quality and have a very long-life cycle.


Your task is for a given number of month and descriptions of rooms to compute in how many rooms the old lamps will be replaced with energy-saving ones and how many energy-saving lamps will remain by the end of each month.


输入


Each input will consist of a single test case.


The first line contains integers n and m (1 ≤ n ≤ 100000, 1 ≤ m ≤ 100) — the number of rooms in the Castle and the number of energy-saving lamps, which Lpl buys monthly.


The second line contains n integers k1, k2, …, kn (1 ≤ kj ≤ 10000, j = 1, 2, …, n) — the number of lamps in the rooms of the Castle. The number in position j is the number of lamps in j-th room. Room numbers are given in accordance with Lpl’s list.

The third line contains one integer q (1 ≤ q ≤ 100000) — the number of queries.

The fourth line contains q integers d1, d2, …, dq (1 ≤ dp ≤ 100000, p = 1, 2, …, q) — numbers of months, in which queries are formed.


Months are numbered starting with 1; at the beginning of the first month Lpl buys the first m energy-saving lamps.


输出


Print q lines.

Line p contains two integers — the number of rooms, in which all old lamps are replaced already, and the number of remaining energy-saving lamps by the end of dp month.


样例输入


5 4
3 10 5 2 7
10
5 1 4 8 7 2 3 6 4 7


样例输出


4 0
1 1
3 6
5 1
5 1
2 0
3 2
4 4
3 6
5 1


提示


In the first month, he bought 4 energy-saving lamps and he replaced the first room in his list and remove it. And then he had 1 energy-saving lamps and skipped all rooms next. So, the answer for the first month is 1,1------1 room’s lamps were replaced already, 1 energy-saving lamp remain.


队友的线段树


ac_code:


const int maxn=1e5+7;
const int inf=0x3f3f3f3f;
#define ls  i<<1
#define rs  i<<1|1
ll n,m,a[maxn],q,x,y,id;
struct node{    ll x,y; }c[maxn];
struct tree{    ll l,r,mi;  }t[maxn<<4];
void pushup(ll i){  t[i].mi=min(t[ls].mi,t[rs].mi); }
void build(ll i,ll l,ll r){
    t[i].l=l;   t[i].r=r;
    if(l==r){
        t[i].mi=a[l];
        return;
    }
    ll mid=l+r>>1;
    build(ls,l,mid);    build(rs,mid+1,r);
    pushup(i);
}
void update(ll i,ll x){
    if(t[i].r<x||t[i].l>x)    return;
    if(t[i].l==t[i].r&&t[i].l==x){
        t[i].mi=inf;
        return;
    }
    update(ls,x);   update(rs,x);
    pushup(i);
}
ll ask(ll i,ll v){
    if(t[i].l==t[i].r)  return t[i].l;
    if(t[ls].mi<=v)      return ask(ls,v);
    return ask(rs,v);
}
int main(){
    n=read();   m=read();
    for(int i=1;i<=n;i++)    a[i]=read();
    build(1,1,n);
    for(int i=1;i<=100000;i++){
        x+=m;
        if(t[1].mi==inf)    x-=m;
        c[i].y=c[i-1].y;    c[i].x=x;
        while(x>=t[1].mi){
            ll t=ask(1,x);
            x-=a[t];    c[i].x-=a[t];
            c[i].y++;
            update(1,t);
        }
    }
    q=read();
    while(q--){
        ll i=read();
        printf("%lld %lld\n",c[i].y,c[i].x);
    }
}



目录
相关文章
|
机器学习/深度学习 Go
[计蒜客] ACM-ICPC 2019 南京赛区网络预赛 | 部分题解 | 线段树 + 线性筛 + 最短路(下)
J. Nanjing Sum 题目描述 输入 输出 样例输入 样例输出 提示 L. Magical Girl Haze 题目描述 输入 输出 样例输入 样例输出 题意:
158 0
[计蒜客] ACM-ICPC 2019 南京赛区网络预赛 | 部分题解 | 线段树 + 线性筛 + 最短路(下)
|
15天前
|
SQL 安全 网络安全
网络安全与信息安全:知识分享####
【10月更文挑战第21天】 随着数字化时代的快速发展,网络安全和信息安全已成为个人和企业不可忽视的关键问题。本文将探讨网络安全漏洞、加密技术以及安全意识的重要性,并提供一些实用的建议,帮助读者提高自身的网络安全防护能力。 ####
57 17
|
26天前
|
存储 SQL 安全
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
随着互联网的普及,网络安全问题日益突出。本文将介绍网络安全的重要性,分析常见的网络安全漏洞及其危害,探讨加密技术在保障网络安全中的作用,并强调提高安全意识的必要性。通过本文的学习,读者将了解网络安全的基本概念和应对策略,提升个人和组织的网络安全防护能力。
|
27天前
|
SQL 安全 网络安全
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
随着互联网的普及,网络安全问题日益突出。本文将从网络安全漏洞、加密技术和安全意识三个方面进行探讨,旨在提高读者对网络安全的认识和防范能力。通过分析常见的网络安全漏洞,介绍加密技术的基本原理和应用,以及强调安全意识的重要性,帮助读者更好地保护自己的网络信息安全。
45 10
|
28天前
|
SQL 安全 网络安全
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
在数字化时代,网络安全和信息安全已成为我们生活中不可或缺的一部分。本文将介绍网络安全漏洞、加密技术和安全意识等方面的内容,并提供一些实用的代码示例。通过阅读本文,您将了解到如何保护自己的网络安全,以及如何提高自己的信息安全意识。
59 10
|
29天前
|
存储 监控 安全
云计算与网络安全:云服务、网络安全、信息安全等技术领域的融合与挑战
本文将探讨云计算与网络安全之间的关系,以及它们在云服务、网络安全和信息安全等技术领域中的融合与挑战。我们将分析云计算的优势和风险,以及如何通过网络安全措施来保护数据和应用程序。我们还将讨论如何确保云服务的可用性和可靠性,以及如何处理网络攻击和数据泄露等问题。最后,我们将提供一些关于如何在云计算环境中实现网络安全的建议和最佳实践。
|
30天前
|
监控 安全 网络安全
网络安全与信息安全:漏洞、加密与意识的交织
在数字时代的浪潮中,网络安全与信息安全成为维护数据完整性、保密性和可用性的关键。本文深入探讨了网络安全中的漏洞概念、加密技术的应用以及提升安全意识的重要性。通过实际案例分析,揭示了网络攻击的常见模式和防御策略,强调了教育和技术并重的安全理念。旨在为读者提供一套全面的网络安全知识框架,从而在日益复杂的网络环境中保护个人和组织的资产安全。
|
27天前
|
安全 网络安全 数据安全/隐私保护
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
在数字化时代,网络安全和信息安全已成为我们日常生活中不可或缺的一部分。本文将深入探讨网络安全漏洞、加密技术和安全意识等方面的问题,并提供一些实用的建议和解决方案。我们将通过分析网络攻击的常见形式,揭示网络安全的脆弱性,并介绍如何利用加密技术来保护数据。此外,我们还将强调提高个人和企业的安全意识的重要性,以应对日益复杂的网络威胁。无论你是普通用户还是IT专业人士,这篇文章都将为你提供有价值的见解和指导。
|
28天前
|
安全 算法 网络协议
网络安全与信息安全知识分享
本文深入探讨了网络安全漏洞、加密技术以及安全意识三个方面,旨在帮助读者更好地理解和应对网络安全威胁。通过分析常见的网络安全漏洞类型及其防范措施,详细介绍对称加密和非对称加密的原理和应用,并强调提高个人和企业安全意识的重要性,为构建更安全的网络环境提供指导。
39 2
|
28天前
|
安全 网络安全 数据安全/隐私保护
网络安全与信息安全:漏洞、加密与意识的艺术
在数字世界的迷宫中,网络安全和信息安全是守护者之剑。本文将揭示网络漏洞的面纱,探索加密技术的奥秘,并强调安全意识的重要性。通过深入浅出的方式,我们将一起走进这个充满挑战和机遇的领域,了解如何保护我们的数字身份不受威胁,以及如何在这个不断变化的环境中保持警惕和适应。
39 1

热门文章

最新文章