ACM-ICPC 2017 Asia HongKong 解题报告

任意门:https://nanti.jisuanke.com/?kw=ACM-ICPC%202017%20Asia%20HongKong

按AC次序:

D - Card collection

In an online game, a player can collect different types of power cards. Each power card can enable a player to have a unique game magic. There are m power cards available in the game as (P_1, . . . , P_m)(P1​,...,Pm​). AA power card can be acquired by game points or through trading with others. In order to support the trading easier, a platform has been built. The platform charges a fixed amount C_iCi​,jj game points for trading respective power cards,P_iPi​ and P_jPj​. Note. Trading P_iPi​ to P_jPj​ or P_jPj​ to P_iPi​ would be of the same charge.

Write a program to calculate the minimal number of game points with a given original power card (P o)(Po) to a target one (Pt)(Pt). The output of your program should be the minimal game point value.

Input

The test data may contain many test cases. Each test case contains three data sections. The first section is an integer to indicate the number of power card types m (1 < m \le 50)m(1<m≤50). The second section contains two integers representing the original power card Po(0 < Po \le m)(0<Po≤m) and the target power card Pt (0 < Pt \le m)Pt(0<Pt≤m). Also, Po cannot be the same as Pt. The third section has a set of triplets and each triplet contains two cards id ii, jj and the charge amount c_i,j (0 < c_i,j \le 20)ci​,j(0<ci​,j≤20) between 22 types of power cards (P_i,P_j)(Pi​,Pj​). The end part of section 33contains a single 00.

Output

The output for each test case is the minimal number of game points needed for the trading.

样例输入复制

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

样例输出复制

4
4

题意概括:

一道英文题,其实讲的是:有N个结点,输入起点 o 终点 t ,输入路径建无向图,求 o 到 t 的最短路。

解题思路:

静态邻接表建图,stl优先队列优化的Dijsktra求单源最短路。

AC code:

 #include <iostream>
#include <algorithm>
#include <cstring>
#include <deque>
#include <cstdio>
#include <vector>
#include <queue>
#include <cmath>
#define INF 0x3f3f3f3f
using namespace std; const int MAXN = 1e3 + ;
typedef pair<int, int> HeapNode;
struct edge
{
int v, nxt, w;
}G[MAXN*];
int head[MAXN], dis[MAXN];
int N, M, cnt; inline void init()
{
for(int i = ; i <= N; i++)
head[i] = -, dis[i] = INF;
cnt = ;
} inline void add(int from, int to, int we)
{
G[cnt].w = we;
G[cnt].v = to;
G[cnt].nxt = head[from];
head[from] = cnt++;
} void dij(int st)
{
//memset(dis, INF, sizeof(dis));
priority_queue<HeapNode, vector<HeapNode>, greater<HeapNode> > heap; //申请优先队列,以键值1排序
dis[st] = ;
heap.push(make_pair(, st));
while(!heap.empty())
{
pair<int, int>T = heap.top();
heap.pop(); if(T.first != dis[T.second]) continue; for(int i = head[T.second]; i != -; i = G[i].nxt)
{
int v = G[i].v;
if(dis[v] > dis[T.second] + G[i].w)
{
dis[v] = dis[T.second] + G[i].w;
heap.push(make_pair(dis[v], v));
}
}
}
} int main()
{
int a, b, c;
while(~scanf("%d", &N))
{
int st, ed;
scanf("%d%d", &st, &ed);
//if(N == 0 && M == 0) break;
init();
while(~scanf("%d", &a))
{
if(a == ) break;
scanf("%d%d", &b, &c);
add(a, b, c);
add(b, a, c);
} dij(st);
printf("%d\n", dis[ed]);
} return ;
}

E - Base Station Sites

5 is the proposed next telecommunications standards beyond the current 4G4G standards. 5G5G planning aims at higher capacity than current 4G4G, allowing a higher density of mobile broadband users, and supporting device-to- device, reliable, and massive wireless communications. AA telecommunication company would like to install more base stations to provide better communication for customers. Due to the installation cost and available locations, the company can only install S (2 \le S \le L)S(2≤S≤L) base stations at L (2 \le L \le 100, 000)L(2≤L≤100,000) candidate locations. Since the base stations work in the same frequency band, they will interfere and cause severe performance degradation. To provide high quality communication experience to customers, the company would like to maximize the distance between the base stations so as to reduce the wireless interference among the base stations. Suppose the L candidate locations are in a straight line at locations P_1, P_2, ... , PL (0 \le Pi \le 1, 000, 000)P1​,P2​,...,PL(0≤Pi≤1,000,000) and the company wants to install SS base stations at the LL candidate locations. What is the largest minimum distance among the SS base stations?

Input

The input data includes multiple test sets.

Each set starts with a line which specifies LL (i.e.i.e., the number of candidate locations) and SS (i.e.i.e., the number of base stations). The next line contains LL space-separated integers which represent P_1P1​ , P_2P2​ , ... , P_LPL​ . The input data ends “00 00”.

Output

For each set, you need to output a single line which should be the largest minimum distance among the base stations.

For the first set, the 33 base stations can be installed at locations 2, 6, 112,6,11.

样例输入复制

5 3
2 3 9 6 11
4 3
1 4 9 10
0 0

样例输出复制

4
3

题意概括:

有 N 个坐标(非有序),在这N个坐标里选S个,使得两两间最小的距离最大化。

即:POJ 2456

解题思路:

二分搜索 最大化最小值

C( d ):可以安排基站的位置使得最近两个基站距离不小于 d;

那么问题就变成了求满足 C( d )的最大 d 。另外,最近的间距不小于 d 也就说明所有基站距离都不小于 d。

C( d ): 可以安排基站的位置使得任意基站的间距都不小于 d。

贪心法求解这个问题:

①对基站坐标进行排序

②把第一个基站放进 P0 坐标

③如果第 i 个基站放在 Pj 的话,第 i+1 个基站就要放入满足 Pj+d <= Pk 的最小的 Pk 中。

AC code:

 #include <cstdio>
#include <iostream>
#include <algorithm>
#include <cstring>
#include <cmath>
#define INF 0x3f3f3f3f
using namespace std;
const int MAXN = 1e5+; int P[MAXN];
int N, M; bool c(int d)
{
int last = ;
int crt = ;
for(int i = ; i < M; i++){
crt = last+;
while(crt < N && P[crt] - P[last] < d) crt++;
if(crt == N) return false;
last = crt;
}
return true;
} int main()
{
while(~scanf("%d %d", &N, &M) && (N+M)){
for(int i = ; i < N; i++)
scanf("%d", &P[i]);
sort(P, P+N);
int st = , ed = INF;
int mid = ;
while(ed - st > ){
mid = (st+ed)/;
if(c(mid)) st = mid;
else ed = mid;
}
printf("%d\n", st);
}
return ;
}

F - Nearby Bicycles

With fast developments of information and communication technology, many cities today have established bicycle sharing systems. The key component of the system is to provide information on nearby bicycles to potential users.

Consider mm bicycles and nn customers, where each bicycle is located at coordinate (c_j , d_j )(cj​,dj​) for j = 1, 2, ... , m,j=1,2,...,m,and each user ii is located at coordinate (a_i, b_i)(ai​,bi​) for i = 1, 2, ... , ni=1,2,...,n The distance between two coordinates (x, y)(x,y)and (x, y)(x,y) is measured by \sqrt{(x-x)^2 +(y-y)^2}(x−x)2+(y−y)2​. For each user i = 1,2,...,ni=1,2,...,n, you are given a threshold s_isi​, your task is to return the total number of bicycles that are within a distance of si from user ii.

Input

The test data may contain many test cases. Each test case contains four lines. The first line of each case contains two integers, mm and n (0 < m, n \le 1000)n(0<m,n≤1000). The second line contains the coordinates, (c_1, d_1), (c_2, d_2), ... , (c_m, d_m)(c1​,d1​),(c2​,d2​),...,(cm​,dm​), of bicycles 1, 2, ... , m1,2,...,m, respectively, which are separated by a space. The third line contains the coordinates,(a1, b1), (a2, b2), ... , (an, bn)(a1,b1),(a2,b2),...,(an,bn), of users 1, 2,... , n1,2,...,n, respectively, which are separated by a space. contains the thresholds, s_1, s_2, ... , s_ns1​,s2​,...,sn​, of the nn users. The last test case is followed by a line of two 00s. All the number of coordinate in the input is in the range [-100000, 100000][−100000,100000].

Output

The output for each test case contains a line of nn integers, k_1, k_2, ... , k_nk1​,k2​,...,kn​, where each ki represents the total number of bicycles that are within a distance of s_isi​ from user ii, for i = 1,2,...,ni=1,2,...,n.

样例输入复制

4 2
(0,0) (0,1) (1,0) (1,1)
(0,0) (1,1)
1 1
0 0

样例输出复制

3 3

题意概括:

先给出 N 个自行车的坐标, 然后给 M 个人的坐标,依次输出与第 j 个人距离为 sj 的自行车的数量( 1 < j <= M );

解题思路:

暴力纯模拟,不过输入用 sscanf 会方便很多。

输出是要注意格式,最后一个空格不输出。

AC code:

 #include <cstdio>
#include <cstring>
#include <bits/stdc++.h>
typedef long long ll;
const int INF=0x3f3f3f3f;
const int MOD=1e9+;
const int MAXN=1e3+; using namespace std; struct node{
ll F,S;
}a[MAXN],b[MAXN],t;
ll pos( node a,node b)
{
return ( (a.F-b.F)*(a.F-b.F)+ (a.S-b.S)*(a.S-b.S) );
}
ll R[MAXN];
int V[MAXN];
char s[];
int main()
{
int m,n;
while(scanf("%d%d",&m,&n)!=EOF)
{
getchar();
if(n==&&m==)
break;
memset(V,,sizeof(V));
for(int i=;i<=m;i++)
{
ll x,y;
scanf("%s",s);
sscanf(s,"(%lld,%lld)",&x,&y);
a[i].F=x;
a[i].S=y;
}
getchar();
for(int i= ; i<=n ; i++)
{
ll x,y;
scanf("%s",s);
sscanf(s,"(%lld,%lld)",&x,&y);
b[i].F=x;
b[i].S=y;
}
for(int i= ; i<=n ; i++)
scanf("%lld",&R[i]); for(int i= ; i<=n ; i++)
{
int ans=;
for(int j= ; j<=m ; j++)
{
ll POS=pos(b[i],a[j]);
if(POS<=(R[i]*R[i]))
ans++;
}
V[i]=ans;
} for(int i=;i<=n;i++)
printf("%d%c",V[i],i==n?'\n':' ');
}
return ;
}

B - Black and White

Considerasquaremapwith N \times NN×N cells. We indicate the coordinate of a cell by(i,j)(i,j),where 1 \le i,j \le N1≤i,j≤N. Each cell has a color either white or black. The color of each cell is initialized to white. The map supports the operation flip([x_{low}, x_{high}], [y_{low}, y_{high]})([xlow​,xhigh​],[ylow​,yhigh]​), which flips the color of each cell in the rectangle [x_{low}, x_{high}] \times [y_{low}, y_{high}][xlow​,xhigh​]×[ylow​,yhigh​]. Given a sequence of flip operations, our problem is to count the number of black cells in the final map. We illustrate this in the following example. Figure (a)(a) shows the initial map. Next, we call flip([2,4],[1,3])([2,4],[1,3]) and obtain Figure (b)(b). Then, we call f lip([1, 5], [3, 5])([1,5],[3,5]) and obtain Figure (c)(c). This map contains 1818 black cells.

Input

The first line contains the number of test cases T (T < 10)T(T<10). Each test case begins with a line containing two integers NN and K (1 < N,K < 10000)K(1<N,K<10000), where NN is the parameter of the map size and KK is the number of flip operations. Each subsequent line corresponds to a flip operation, with four integers: x_{low}x_{high}xlow​xhigh​, y_{low}, y_{high}ylow​,yhigh​.

Output

For each test case, output the answer in aa line.

样例输入复制

1
5 2
2 4 1 3
1 5 3 5

样例输出复制

18

题意概括:

黑白两色,矩阵初始化为白色,后面操作把 操作矩阵颜色反转。求黑色方块数量。

解题思路:

树状数组扫描线模板题。

AC code:

 #include<bits/stdc++.h>
using namespace std;
typedef long long ll; int n;
int sum[];
int mark[];
void nodeupdate(int root,int l,int r,ll num)
{
mark[root]^=;
sum[root]=(r-l+)-sum[root];
}
void pushdown(int root,int l,int r)//传递给两孩子
{
if(mark[root]==)return;
int mid=(l+r)/;
nodeupdate(root*,l,mid,mark[root]);
nodeupdate(root*+,mid+,r,mark[root]);
mark[root]=;
}
void update(int kl,int kr,ll num, int root=,int l=,int r=n)//区间[kl,kr]修改
{
if(kl<=l&&r<=kr){
nodeupdate(root,l,r,num);
return;
}
pushdown(root,l,r);
int mid=(l+r)/;
if(kl<=mid)
update(kl,kr,num,root*,l,mid);
if(kr>mid)
update(kl,kr,num,root*+,mid+,r);
sum[root]=sum[root*]+sum[root*+];
} struct node{
int h,a,b,flag;
}e[];
int cnt=;
bool cmp(node a,node b){
if(a.h==b.h)return a.flag>b.flag;
return a.h<b.h;
}
int main()
{
int T,m,x1,x2,y1,y2;
cin>>T;
while(T--)
{
cin>>n>>m;
memset(sum,,sizeof(sum));
memset(mark,,sizeof(mark));
cnt=;
for(int i=;i<m;i++)
{
scanf("%d%d%d%d",&x1,&x2,&y1,&y2);
e[cnt++]=node{y1,x1,x2,};
e[cnt++]=node{y2,x1,x2,-};
}
sort(e,e+cnt,cmp);
int ans=;
for(int i=,j=;i<=n;i++)
{
while(j<cnt&&e[j].h<=i&&e[j].flag==){
update(e[j].a,e[j].b,);
j++;
}
ans+=sum[];
while(j<cnt&&e[j].h<=i){
update(e[j].a,e[j].b,);
j++;
}
}
cout<<ans<<endl;
}
}

最后自闭 A 题 和 I 题 要用到 JAVA 大数。小蒟蒻不才,来日方长。

ACM-ICPC 2017 Asia HongKong 解题报告的更多相关文章

  1. 2013 ACM/ICPC 成都网络赛解题报告

    第三题:HDU 4730 We Love MOE Girls 传送门:http://acm.hdu.edu.cn/showproblem.php?pid=4730 水题~~~ #include < ...

  2. hdu 4762 && 2013 ACM/ICPC 长春网络赛解题报告

    这次的答案是猜出来的,如果做得话应该是应该是一个几何概型的数学题: 答案就是:n/(m^(n-1)); 具体的证明过程: 1.首先枚举这M个点中的的两个端点,概率是:n*(n-1); 2.假设这个蛋糕 ...

  3. hdu 4763 && 2013 ACM/ICPC 长春网络赛解题报告

    一个KMP的简单题 不过好久没用过这个东东了,今天写的时候花了很多时间: 只需要花点时间判断下所有的元素都相同的的情况就行了! #include<cstdio> #include<c ...

  4. ACM ICPC 2017 Warmup Contest 9 I

    I. Older Brother Your older brother is an amateur mathematician with lots of experience. However, hi ...

  5. ACM ICPC 2017 Warmup Contest 9 L

    L. Sticky Situation While on summer camp, you are playing a game of hide-and-seek in the forest. You ...

  6. SCNU ACM 2016新生赛决赛 解题报告

    新生初赛题目.解题思路.参考代码一览 A. 拒绝虐狗 Problem Description CZJ 去排队打饭的时候看到前面有几对情侣秀恩爱,作为单身狗的 CZJ 表示很难受. 现在给出一个字符串代 ...

  7. SCNU ACM 2016新生赛初赛 解题报告

    新生初赛题目.解题思路.参考代码一览 1001. 无聊的日常 Problem Description 两位小朋友小A和小B无聊时玩了个游戏,在限定时间内说出一排数字,那边说出的数大就赢,你的工作是帮他 ...

  8. 「雅礼集训 2017 Day2」解题报告

    「雅礼集训 2017 Day2」水箱 我怎么知道这种题目都能构造树形结构. 根据高度构造一棵树,在树上倍增找到最大的小于约束条件高度的隔板,开一个 \(vector\) 记录一下,然后对于每个 \(v ...

  9. 「雅礼集训 2017 Day1」 解题报告

    「雅礼集训 2017 Day1」市场 挺神仙的一题.涉及区间加.区间除.区间最小值和区间和.虽然标算就是暴力,但是复杂度是有保证的. 我们知道如果线段树上的一个结点,\(max=min\) 或者 \( ...

随机推荐

  1. 5. AQS(AbstractQueuedSynchronizer)抽象的队列式的同步器

    5.1 AbstractQueuedSynchronizer里面的设计模式--模板模式 模板模式:父类定义好了算法的框架,第一步做什么第二步做什么,同时把某些步骤的实现延迟到子类去实现. 5.1.1 ...

  2. Mixamo Fuse10分钟创建角色

    http://edu.manew.com/course/132 太6了

  3. C++编程规范(摘记)

    C++编程规范 函数的参数 输入使用const T&, 输出使用指针 函数的返回类型 如果返回引用, 则返回的对象应该是属性, 因为这个涉及到了生命周期 尽量不返回, 而是通过参数列表中的输出 ...

  4. [shell基础]——echo命令

    echo命令:在shell中主要用于输出 1. -n     不换行的显示结果(默认是换行的) 2. -e " "  支持双引号中使用一些特殊字符 常用的特殊字符有 \a 发出警告 ...

  5. django(6)model表语句操作、Form操作、序列化操作

    1.model建表操作之创建索引.元数据 # 单表操作,创建表 class User(models.Model): name = models.CharField(max_length=32) ema ...

  6. Spring mvc框架下使用kaptcha生成验证码

    1.下载jar包并导入. kaptcha-2.3.2.jar 2.spring 配置文件 applicationContext.xml. <bean id="captchaProduc ...

  7. SQLServer 2016 Express 安装部署,并配置支持远程连接

    在项目中需要用到SQLServer,于是安装部署了SQLServer,部署的过程中遇到了一下问题,记录一下以便之后遇到同样问题能快速解决. 一.安装包下载 首先下载必要的安装包: 1.SQLServe ...

  8. HTML表单(form)的“enctype”属性

    Form元素的语法中,EncType表明提交数据的格式 属性值: application/x-www-form-urlencoded:在发送前编码所有字符(默认) multipart/form-dat ...

  9. 避免console错误,console兼容

    背景:写js代码时写了很多console.log进行日志打印,最后上生产时不想删除日志输出, 但是ie在不打开控制台时,日志输出会导致后续js不执行,所以需要适时屏蔽js日志输出 (IE等不支持con ...

  10. LotusScript_文档查询循环方法整理

    1.  视图(View)查询 ... Set view = db.GetView("ViewName") Set doc = view.GetFirstDocument While ...