ACM-ICPC 2018 徐州赛区网络预赛 F. Features Track

2024-01-20 15:32

本文主要是介绍ACM-ICPC 2018 徐州赛区网络预赛 F. Features Track,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

  •  1000ms
  •  262144K

Morgana is learning computer vision, and he likes cats, too. One day he wants to find the cat movement from a cat video. To do this, he extracts cat features in each frame. A cat feature is a two-dimension vector <x, y>. If xi​=xj​ and yi​ = yj​, then <xi​, yi​> <xj​,yj​> are same features.

So if cat features are moving, we can think the cat is moving. If feature <a, b> is appeared in continuous frames, it will form features movement. For example, feature <a,b> is appeared in frame 2,3,4,7,8 then it forms two features movement 2-3-4 and 7-8 .

Now given the features in each frames, the number of features may be different, Morgana wants to find the longest features movement.

Input

First line contains one integer T(1≤T≤10) , giving the test cases.

Then the first line of each cases contains one integer n (number of frames),

In The next n lines, each line contains one integer ki​ ( the number of features) and 2ki​ intergers describe ki ​features in ith frame.(The first two integers describe the first feature, the 3rd and 4th integer describe the second feature, and so on).

In each test case the sum number of features N will satisfy N≤100000 .

Output

For each cases, output one line with one integers represents the longest length of features movement.

样例输入

1
8
2 1 1 2 2
2 1 1 1 4
2 1 1 2 2
2 2 2 1 4
0
0
1 1 1
1 1 1

样例输出

3

题目来源

ACM-ICPC 2018 徐州赛区网络预赛

题目大意:有n个区域,每个区域有k个点(x,y)。各点(x,y)出现的区域中最长的连续区域的长度的最大值

比如,

1  //1组测试
8  //8个区域
2 1 1 2 2  //区域1两个点 (1,1)  (2,2)
2 1 1 1 4  //区域2两个点 (1,1)  (1,4)
2 1 1 2 2  //区域3两个点 (1,1)  (2,2)
2 2 2 1 4  //区域4两个点 (2,2)  (1,4)
0              //区域5零个点
0              //区域6零个点 
1 1 1        //区域7一个点 (1,1) 
1 1 1        //区域8一个点 (1,1) 

点(1,1)出现在区域1,2,3,7,8 最长的连续区域为1-2-3长度为3

点(2,2)出现在区域1,3,4 最长的连续区域为3-4长度为2

点(1,4)出现在区域2,4最长的连续区域为2或4长度为1

因此最后答案为3

题解:将二维坐标用一个数表示,由于x+y的值小于等于100000,因此可以将(x,y)用数 z=x*100001+y 表示,其中x=z/100000 ,y=z%100000 。使用映射map<int,int>s[2],键表示位置坐标化成的整数,值表示以此区域的这个点结尾的最长连续区间的长度,s[0]记录上一个区间的点信息,s[1]记录本区间的点信息,由于要连续,因此如果本区域出现了上一个区域没有出现的点,那么本区域以这个点结尾的最长连续区间的长度为1,否则为上一个区域相同结点的对应的值加一,每次记录最大值即可。

AC的C++代码:

#include<iostream>
#include<map>using namespace std;
typedef long long ll;ll mod=100001;
map<ll,ll>s[2];//记录上一个区域和此区域的结点信息 int main()
{int t,r,n,x,y,num;scanf("%d",&t);while(t--){s[0].clear();s[1].clear();ll ans=0;scanf("%d",&r);for(int i=1;i<=r;i++){s[i%2].clear();scanf("%d",&num);for(int j=1;j<=num;j++){scanf("%d%d",&x,&y);ll pos=x*mod+y;//将本区域的点位置化成1维的数 s[i%2][pos]=+s[(i-1)%2][pos]+1;if(ans<s[i%2][pos])//更新答案 ans=s[i%2][pos];}s[(i-1)%2].clear();//清空上一个区域的结点信息 }printf("%lld\n",ans);}return 0;
}

 

这篇关于ACM-ICPC 2018 徐州赛区网络预赛 F. Features Track的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/626474

相关文章

认识、理解、分类——acm之搜索

普通搜索方法有两种:1、广度优先搜索;2、深度优先搜索; 更多搜索方法: 3、双向广度优先搜索; 4、启发式搜索(包括A*算法等); 搜索通常会用到的知识点:状态压缩(位压缩,利用hash思想压缩)。

Linux 网络编程 --- 应用层

一、自定义协议和序列化反序列化 代码: 序列化反序列化实现网络版本计算器 二、HTTP协议 1、谈两个简单的预备知识 https://www.baidu.com/ --- 域名 --- 域名解析 --- IP地址 http的端口号为80端口,https的端口号为443 url为统一资源定位符。CSDNhttps://mp.csdn.net/mp_blog/creation/editor

ASIO网络调试助手之一:简介

多年前,写过几篇《Boost.Asio C++网络编程》的学习文章,一直没机会实践。最近项目中用到了Asio,于是抽空写了个网络调试助手。 开发环境: Win10 Qt5.12.6 + Asio(standalone) + spdlog 支持协议: UDP + TCP Client + TCP Server 独立的Asio(http://www.think-async.com)只包含了头文件,不依

BUUCTF靶场[web][极客大挑战 2019]Http、[HCTF 2018]admin

目录   [web][极客大挑战 2019]Http 考点:Referer协议、UA协议、X-Forwarded-For协议 [web][HCTF 2018]admin 考点:弱密码字典爆破 四种方法:   [web][极客大挑战 2019]Http 考点:Referer协议、UA协议、X-Forwarded-For协议 访问环境 老规矩,我们先查看源代码

poj 3181 网络流,建图。

题意: 农夫约翰为他的牛准备了F种食物和D种饮料。 每头牛都有各自喜欢的食物和饮料,而每种食物和饮料都只能分配给一头牛。 问最多能有多少头牛可以同时得到喜欢的食物和饮料。 解析: 由于要同时得到喜欢的食物和饮料,所以网络流建图的时候要把牛拆点了。 如下建图: s -> 食物 -> 牛1 -> 牛2 -> 饮料 -> t 所以分配一下点: s  =  0, 牛1= 1~

poj 3068 有流量限制的最小费用网络流

题意: m条有向边连接了n个仓库,每条边都有一定费用。 将两种危险品从0运到n-1,除了起点和终点外,危险品不能放在一起,也不能走相同的路径。 求最小的费用是多少。 解析: 抽象出一个源点s一个汇点t,源点与0相连,费用为0,容量为2。 汇点与n - 1相连,费用为0,容量为2。 每条边之间也相连,费用为每条边的费用,容量为1。 建图完毕之后,求一条流量为2的最小费用流就行了

poj 2112 网络流+二分

题意: k台挤奶机,c头牛,每台挤奶机可以挤m头牛。 现在给出每只牛到挤奶机的距离矩阵,求最小化牛的最大路程。 解析: 最大值最小化,最小值最大化,用二分来做。 先求出两点之间的最短距离。 然后二分匹配牛到挤奶机的最大路程,匹配中的判断是在这个最大路程下,是否牛的数量达到c只。 如何求牛的数量呢,用网络流来做。 从源点到牛引一条容量为1的边,然后挤奶机到汇点引一条容量为m的边

配置InfiniBand (IB) 和 RDMA over Converged Ethernet (RoCE) 网络

配置InfiniBand (IB) 和 RDMA over Converged Ethernet (RoCE) 网络 服务器端配置 在服务器端,你需要确保安装了必要的驱动程序和软件包,并且正确配置了网络接口。 安装 OFED 首先,安装 Open Fabrics Enterprise Distribution (OFED),它包含了 InfiniBand 所需的驱动程序和库。 sudo

【机器学习】高斯网络的基本概念和应用领域

引言 高斯网络(Gaussian Network)通常指的是一个概率图模型,其中所有的随机变量(或节点)都遵循高斯分布 文章目录 引言一、高斯网络(Gaussian Network)1.1 高斯过程(Gaussian Process)1.2 高斯混合模型(Gaussian Mixture Model)1.3 应用1.4 总结 二、高斯网络的应用2.1 机器学习2.2 统计学2.3

网络学习-eNSP配置NAT

NAT实现内网和外网互通 #给路由器接口设置IP地址模拟实验环境<Huawei>system-viewEnter system view, return user view with Ctrl+Z.[Huawei]undo info-center enableInfo: Information center is disabled.[Huawei]interface gigabit