当前位置: 首页 > news >正文

怎么查看网站有没有做ssl手机免费发布信息平台

怎么查看网站有没有做ssl,手机免费发布信息平台,自助建站平台有哪些,seo按天计费系统定制Beppa and SwerChat 题面翻译 B和她的怪胎朋友在某个社交软件上的聊天群聊天。 这个聊天群有包括B在内的n名成员,每个成员都有自己从1-n的独特id。 最近使用这个聊天群的成员将会在列表最上方,接下来较次使用聊天软件的成员将会在列表第二名&#xff0…

Beppa and SwerChat

题面翻译

B和她的怪胎朋友在某个社交软件上的聊天群聊天。
这个聊天群有包括B在内的n名成员,每个成员都有自己从1-n的独特id。
最近使用这个聊天群的成员将会在列表最上方,接下来较次使用聊天软件的成员将会在列表第二名,依次类推。
B会在上午9点和晚上22点登录,并记录这时的列表。
B确保同一时间只有一个人登录,并且在九点和22点并没有其他人登录。
请你输出在9-22点之间的一种成员登录过的最小数量。

题目描述

Beppa and her circle of geek friends keep up to date on a group chat in the instant messaging app SwerChat $ ^{\text{TM}} $ .

The group has $ n $ members, excluding Beppa. Each of those members has a unique ID between $ 1 $ and $ n $ . When a user opens a group chat, SwerChat $ ^{\text{TM}} $ displays the list of other members of that group, sorted by decreasing times of last seen online (so the member who opened the chat most recently is the first of the list). However, the times of last seen are not displayed.

Today, Beppa has been busy all day: she has only opened the group chat twice, once at 9:00 and once at 22:00. Both times, she wrote down the list of members in the order they appeared at that time. Now she wonders: what is the minimum number of other members that must have been online at least once between 9:00 and 22:00?

Beppa is sure that no two members are ever online at the same time and no members are online when Beppa opens the group chat at 9:00 and 22:00.

输入格式

Each test contains multiple test cases. The first line contains an integer t t t ( 1 ≤ t ≤ 10 000 1 \leq t \leq 10\,000 1t10000 ) — the number of test cases. The descriptions of the $ t $ test cases follow.

The first line of each test case contains an integer n n n ( 1 ≤ n ≤ 1 0 5 1 \leq n \leq 10^5 1n105 ) — the number of members of the group excluding Beppa.

The second line contains $ n $ integers $ a_1, , a_2, , \dots, , a_n $ ( $ 1 \le a_i \le n $ ) — the list of IDs of the members, sorted by decreasing times of last seen online at 9:00.

The third line contains $ n $ integers $ b_1, , b_2, , \dots, , b_n $ ( $ 1 \le b_i \le n $ ) — the list of IDs of the members, sorted by decreasing times of last seen online at 22:00.

For all $ 1\le i < j\le n $ , it is guaranteed that $ a_i \ne a_j $ and $ b_i \ne b_j $ .

It is also guaranteed that the sum of the values of $ n $ over all test cases does not exceed $ 10^5 $ .

输出格式

For each test case, print the minimum number of members that must have been online between 9:00 and 22:00.

样例 #1

样例输入 #1

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

样例输出 #1

2
0
4
0

提示

In the first test case, members 4 , 5 4, 5 4,5 must have been online between 9:00 and 22:00.

In the second test case, it is possible that nobody has been online between 9:00 and 22:00.


这题的时间复杂度允许使用双指针的方法。

看到这道题会很自然的想到两种方法,一个是根据第一次看见的信息去推,另一个是根据第二次看见的信息去倒推。
那么对于两种方法都是去比较另一个序列里存在的和自己的公共子序列的长度,然后余下的就是顺序变化的。
然而对于从前往后推,如果使用双指针的方法,那么就会导致错误,例如以下样例:

2
2 1 3
2 3 1

如果根据从前往后推的方式,是无法正常判断出到底有多少元素变动了。
所以我们采取从后往前推的方式。

从后往前推,其实就是以b序列为主线,然后去a序列里面找b序列的元素,并且是按顺序找,在搜完整个a序列之后,b序列留下的还没有被找到的那些元素,就是变动过的元素。

为什么要这样找 ?
在这里,我们必须要保证按照b序列元素的顺序找,只要模拟一下就可以明了。

对于以上给出的样例:

2
2 1 3
2 3 1

我们凭借人类的思维去判断这里有两个元素的思路就是:发现了3移动到了1的前面,又因为2在3的前面,所以2和3一定都变动了。
那么如果两个序列是这样的

1 2 3
3 1 2

我们就会说只有一个序列变化了,因为只有3变动到了1 2这个连续子串的前面。
所以就是如此的思路。 (数学的思路不会证明)


CODE:

#include<bits/stdc++.h>
using namespace std;
const int N = 1e5+10;int a[N];
int b[N];
int n;void solve(){cin >> n;for(int i = 1;i <= n;i++)cin >> a[i];for(int i = 1;i <= n;i++)cin >> b[i];int pA = n,pB = n;while(pA >= 1 && pB >= 1){while(a[pA] != b[pB] && pA >= 1)pA--;if(pA >= 1)pB--;	//这里要不超出边界的时候才去减,不然会减多}cout << pB << endl;
}int main(){int T;cin >> T;while(T--){solve();}return 0;
}
http://www.khdw.cn/news/935.html

相关文章:

  • 盐山国外网站建设ip域名查询地址
  • 线上线下推广是什么意思东莞seo建站推广费用
  • 西安做网站陕西必达河北seo关键词排名优化
  • 一个网站做多少内链合适软文营销网
  • 新产品推广方案范文seo标题优化分析范文
  • 大型网站制作怎么样百度新闻首页
  • 初学者做网站成人技能培训班有哪些
  • 多个网站如何做301什么是软文
  • 企业展厅设计理念南昌seo计费管理
  • 网站怎么做交易市场百度关键词优化大
  • 市政府统一建设网站的提议网站模板怎么建站
  • 网站注册账号有风险吗seo视频
  • 济南市工程建设标准定额站网站谷歌seo网站推广怎么做优化
  • 北京网站ui设计公司百度app在哪里找
  • Sensei wordpress插件网店seo是什么意思
  • 做视频的教学直播网站青岛设计优化公司
  • pc网站做成移动网站2021近期时事新闻热点事件
  • 黄冈公司网站推广软件首选seo 推广怎么做
  • 家用电脑做网站能备案长沙市seo百度关键词
  • 鄂州网站建设报价百度客户端下载
  • 花钱让别人做的网站版权是谁的关键词优化步骤简短
  • 网站建设唯美谷网站河北网站seo地址
  • 自动生成logo厦门seo排名收费
  • 长沙点梦网站建设公司怎么样汕头seo排名收费
  • flashfxp上传了网站希爱力双效片骗局
  • 一级做a爰片香蕉视频网站超级seo外链工具
  • 温州网站建设得花多少钱网络媒体推广报价
  • windows下搭建wordpress网站产品怎么优化
  • 2015做啥网站致富网络销售模式有哪些
  • 外贸网站用什么空间打广告去哪个平台免费