Countries

描述

There are two antagonistic countries, country A and country B. They are in a war, and keep launching missiles towards each other.

It is known that country A will launch N missiles. The i-th missile will be launched at time Tai. It flies uniformly and take time Taci from one country to the other. Its damage capability is Dai.

It is known that country B will launch M missiles. The i-th missile will be launched at time Tbi.

It flies uniformly and takes time Tbci from one country to the other. Its damage capability is Dbi.

Both of the countries can activate their own defending system.

The defending system of country A can last for time TA, while The defending system of country B can last for time TB.

When the defending system is activated, all missiles reaching the country will turn around and fly back at the same speed as they come.

At other time, the missiles reaching the country will do damages to the country.
(Note that the defending system is still considered active at the exact moment it fails)

Country B will activate its defending system at time X.

When is the best time for country A to activate its defending system? Please calculate the minimal damage country A will suffer.

输入

There are no more than 50 test cases.

For each test case:

The first line contains two integers TA and TB, indicating the lasting time of the defending system of two countries.

The second line contains one integer X, indicating the time that country B will active its defending system.

The third line contains two integers N and M, indicating the number of missiles country A and country B will launch.

Then N lines follow. Each line contains three integers Tai, Taci and Dai, indicating the launching time, flying time and damage capability of the i-th missiles country A launches.

Then M lines follow. Each line contains three integers Tbi, Tbci and Dbi, indicating the launching time, flying time and damage capability of the i-th missiles country B launches.

0 <= TA, TB, X, Tai, Tbi<= 100000000

1 <= Taci, Tbci <= 100000000

0 <= N, M <= 10000

1 <= Dai, Dbi <= 10000

输出

For each test case, output the minimal damage country A will suffer.

提示

In the first case, country A should active its defending system at time 3.

Time 1: the missile is launched by country A.

Time 2: the missile reaches country B, and country B actives its defending system, then the missile turns around.

Time 3: the missile reaches country A, and country A actives its defending system, then the missile turn around.

Time 4: the missile reaches country B and turns around.

Time 5: the missile reaches country A and turns around.

Time 6: the missile reaches country B, causes damages to country B.


样例输入
2 2
2
1 0
1 1 10
4 5
3
2 2
1 2 10
1 5 7
1 3 2
0 4 8
样例输出
0

17

#include <cmath> #include <ctime> #include <cctype> #include <cstdio> #include <cstring> #include <cstdlib> #include <cassert> #include <set> #include <map> #include <stack> #include <queue> #include <vector> #include <bitset> #include <complex> #include <iostream> #include <algorithm> #define rep(i,s,t) for(register LL i=s,_t=t;i<_t;++i) #define per(i,s,t) for(register LL i=t-1,_s=s;i>=_s;--i) using namespace std; #define LL long long const LL mod=(LL)1e9+7,inf=0x7fffffff; const LL INF=1ll<<60; const LL P=31525197391593473,r=3; void mod_add(LL &a,LL b){ if((a+=b)>=P)a-=P; } void mod_minus(LL &a,LL b){ if((a-=b)<0)a+=P; } LL mul(LL x,LL y,LL z){ return (x*y - (LL)(x/(long double)z*y+1e-3)*z+z)%z; } LL fast_mod_pow(LL a,LL b){ LL res=1; for(;b;b>>=1,a=mul(a,a,P)) if(b&1)res=mul(res,a,P); return res; } inline LL calc_inv(LL x){ return fast_mod_pow(x,P-2); } const LL N=(1<<18)+5; LL rev[N],A[N],B[N],C[N]; void DFT(LL *arr,LL n,bool flag){ rep(i,0,n)if(i<rev[i])swap(arr[i],arr[rev[i]]); for(LL m=2;m<=n;m<<=1){ LL g=fast_mod_pow(r,(P-1)/m); if(flag)g=calc_inv(g); for(LL i=0;i<n;i+=m){ LL cur=1; rep(j,0,m>>1){ LL x=arr[i+j],y=mul(cur,arr[i+j+(m>>1)],P); mod_add(arr[i+j]=x,y); mod_minus(arr[i+j+(m>>1)]=x,y); cur=mul(cur,g,P); } } } } void NTT(LL n,LL m){ LL _n,S; for(_n=1,S=0;_n<n+m;_n<<=1,++S); rep(i,1,_n)rev[i]=(rev[i>>1]>>1)|((i&1)<<S-1); rep(i,n,_n)A[i]=0; rep(i,m,_n)B[i]=0; DFT(A,_n,false); DFT(B,_n,false); rep(i,0,_n)C[i]=mul(A[i],B[i],P); DFT(C,_n,true); LL inv=calc_inv(_n); rep(i,0,_n)C[i]=mul(C[i],inv,P); } int main() { LL T; scanf("%lld",&T); LL n; while(T-- && ~scanf("%lld",&n)){ long long ans = 0; for(LL i = 0;i < n;i++){ scanf("%lld",&A[i]); ans += 1ll * A[i] * A[i]; } for(LL i = 0;i < n;i++){ scanf("%lld",&B[i]); ans += 1ll * B[i] * B[i]; } for(LL i = 0;i < n;i++) A[i+n] = A[i]; reverse(B,B+n); NTT(n*2,n); ans -= *max_element(C+n,C+n*2 + 1) * 2; printf("%lld\n",ans); } return 0; }

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/509197.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Windows下dump文件生成与分析

一、 生成Dump文件方式 1.1任务管理器 在程序崩溃后&#xff0c;先不关闭程序&#xff0c;在任务管理器中找到该程序对应的进程。右键—>创建转储文件。 此时会在默认的目录下创建出一个dump文件。 可以看出&#xff0c;此种方法只适用于程序崩溃但没有立即自行退出的情…

HTTP与HTTPS的区别[转载]

优秀文章链接&#xff1a;https://www.cnblogs.com/wqhwe/p/5407468.html

迪杰斯特拉算法 两点间最短路径的选择

百度首页 登录 注册 新闻网页贴吧知道音乐图片视频地图百科文库进入词条搜索词条帮助首页分类艺术科学自然文化地理生活社会人物经济体育历史特色百科历史上的今天数字博物馆史记2015城市百科二战百科非遗百科用户蝌蚪团燃梦计划百科任务百科商城权威合作合作模式常见问题联系方…

TLS--线程局部存储

转自&#xff1a;https://blog.csdn.net/u013761036/article/details/54960277 这个东西并不陌生了&#xff0c;之前写过了一个关于这个的应用&#xff0c;利用静态TLS姿势实现代码段静态加密免杀或者所谓的加壳思路。地址在这:http://blog.csdn.net/u013761036/article/detai…

小白科普:Netty有什么用?【转载】

优秀文章链接&#xff1a;https://blog.csdn.net/bjweimengshu/article/details/78786315#commentBox

TLS线程局部存储--thread_specific_ptr

大多数函数都不是可重入的。这也就是说在某一个线程已经调用了一个函数时&#xff0c;如果你再调用同一个函数&#xff0c;那么这样是不安全的。一个不可重入的函数通过连续的调用来保存静态变量或者是返回一个指向静态数据的指针。 举例来说&#xff0c;std::strtok就是不可重…

icpc青岛栈

1001-I Count Two Three 题意&#xff1a;给出一个整数n, 找出一个大于等于n的最小整数m, 使得m可以表示为2a3b5c7d。 分析&#xff1a;很好想&#xff0c;因为数据是在1~1e9之间的&#xff0c;所以直接将所有2a3b5c7d的形式且小于1e9的数字打表&#xff0c;然后二分搜索出大于…

互斥锁和条件变量

转自&#xff1a;https://www.jb51.net/article/102764.htm mutex体现的是一种竞争&#xff0c;我离开了&#xff0c;通知你进来。 cond体现的是一种协作&#xff0c;我准备好了&#xff0c;通知你开始吧。 互斥锁一个明显的缺点是它只有两种状态&#xff1a;锁定和非锁定。…

jetty优秀文章转载

地址&#xff1a;https://www.cnblogs.com/yiwangzhibujian/p/5845623.html

UNet详解(转)

Unity Networking&#xff08;UNet&#xff09;函数时序统计和分析 背景和概述 Unity Networking是官方自Unity5.1以来推出的新网络通信解决方案。UNet是非官方但更民间更精简的叫法。 本文需要读者有基础的UNet知识。 了解UNet时序&#xff0c;可以更好更严谨地编写UNet相…

GET和POST两种基本请求方法的区别

转载地址:https://www.cnblogs.com/logsharing/p/8448446.html GET和POST是HTTP请求的两种基本方法&#xff0c;要说它们的区别&#xff0c;接触过WEB开发的人都能说出一二。 最直观的区别就是GET把参数包含在URL中&#xff0c;POST通过request body传递参数。 你可能自己写过…

icpc大连栈

赛时只出了两题 09 10 06卡死了。很烂&#xff0c;没有及时弃疗06&#xff0c;最后得不偿失 丢人。 1001 Different Circle Permutation&#xff08;矩快polya欧拉函数&#xff09; 题目大意&#xff1a;n个座位围成一圈&#xff0c;n个人中挑出若干个人坐下&#xff0c;要求…

Ubuntu14.04 VSCode工程在root下无运行,在非root无法修改配置文件

转自:https://blog.csdn.net/wenyun_kang/article/details/69389784 vscode的配置文件被加上了root权限 把配置文件的root权限去掉就好了 cd ~/.config sudo rm -rf ./Code/ 然后输入密码就好了 猜测原因:vscode在打开的时候需要改动一些配置文件,但是启动的时候发现文件…

jetty优秀文章

地址&#xff1a;http://hbiao68.iteye.com/category/291430

Ubuntu14.04 Apollo 3.5安装

一.安装git lfs 1. 安装crul &#xff1a; curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash 2. 安装 git-lfs&#xff1a; sudo apt-get --yes --force-yes install git-lfs 确保git-lfs正确安装 &#xff1a;git lfs ins…

查询数据库每天更新的数量

select LEFT(FROM_UNIXTIME(pdate),10),count(LEFT(FROM_UNIXTIME(pdate),10)) from tablename where pdate > 1536944461 and pdate < 1539593178 GROUP BY LEFT(FROM_UNIXTIME(pdate),10)

职场那些事

转自&#xff1a;https://www.zhihu.com/question/49209215 1.没有时间观念 任何集体环境中&#xff0c;没有时间观念都是大忌。尤其在职场团队协作过程中&#xff0c;每个人都有自己的位置&#xff0c;每个人的时间都是宝贵的。工作是环环相扣的&#xff0c;因为你的延期导…

顺序表应用4-2:元素位置互换之逆置算法(数据改进)

Problem Description 一个长度为len(1<len<1000000)的顺序表&#xff0c;数据元素的类型为整型&#xff0c;将该表分成两半&#xff0c;前一半有m个元素&#xff0c;后一半有len-m个元素&#xff08;1<m<len)&#xff0c;设计一个时间复杂度为O(N)、空间复杂度为O(…

HtmlUnit优秀文章

博客地址:https://www.cnblogs.com/davidwang456/articles/8693050.html https://blog.csdn.net/anLA_/article/details/50199815

主程成长之路

原文&#xff1a;https://blog.csdn.net/hackmind/article/details/48137233 0x01、技术 1、技术是程序员吃饭的手艺&#xff0c;打磨自己的手艺肯定无可厚非 2、保持对技术的热爱&#xff0c;不断学习&#xff0c;持续编程 3、有敬畏心&#xff0c;明白自己是在做商业项目…