Codeforces Round 811 (Div. 3)(VP-15,寒假加训)

A.

模拟

// Problem: A. Everyone Loves to Sleep
// Contest: Codeforces - Codeforces Round 811 (Div. 3)
// URL: https://codeforces.com/group/RAx5fiilkP/contest/1714/problem/A
// Memory Limit: 256 MB
// Time Limit: 2000 ms
// 
// Powered by CP Editor (https://cpeditor.org)#include<bits/stdc++.h>
#define eps 1e-5
#define INF 1e9
using namespace std;
typedef long long ll;
const int N = 2e6 + 9;
struct node{int h,m;
}a[N];
bool cmp(node a,node b){if(a.h!=b.h){return a.h<b.h;}return a.m<b.m;
}
void Lan(){int n,h,m;cin>>n>>h>>m;for(int i=1;i<=n;i++){cin>>a[i].h>>a[i].m;if(a[i].h<h || (a[i].h==h && a[i].m<m)){a[i].h+=24;}}sort(a+1,a+1+n,cmp);int ans=h*60+m;int res=a[1].h*60+a[1].m;if(ans==res){cout<<0<<" "<<0<<'\n';return;}res-=ans;if(res%60==0){cout<<res/60<<" "<<0<<'\n';}else{cout<<res/60<<" "<<res%60<<'\n';}}
int main() {ios::sync_with_stdio(false);cin.tie(0),cout.tie(0);int q;cin>>q;while (q--) {Lan();}return 0;
}

B.

从后往前遍历一遍即可

// Problem: B. Remove Prefix
// Contest: Codeforces - Codeforces Round 811 (Div. 3)
// URL: https://codeforces.com/group/RAx5fiilkP/contest/1714/problem/B
// Memory Limit: 256 MB
// Time Limit: 2000 ms
// 
// Powered by CP Editor (https://cpeditor.org)#include<bits/stdc++.h>
#define eps 1e-5
#define INF 1e9
using namespace std;
typedef long long ll;
const int N = 2e6 + 9;
int a[N],vis[N];
void Lan(){int n;cin>>n;int  mx=0;for(int i=1;i<=n;i++){cin>>a[i];mx=max(mx,a[i]);}for(int i=1;i<=(mx+1);i++){vis[i]=0;}for(int i=n;i>=1;i--){if(!vis[a[i]]){vis[a[i]]=1;}else{cout<<i<<'\n';return;}}cout<<0<<'\n';
}
int main() {ios::sync_with_stdio(false);cin.tie(0),cout.tie(0);int q;cin>>q;while (q--) {Lan();}return 0;
}

C.

简单贪心

// Problem: C. Minimum Varied Number
// Contest: Codeforces - Codeforces Round 811 (Div. 3)
// URL: https://codeforces.com/group/RAx5fiilkP/contest/1714/problem/C
// Memory Limit: 256 MB
// Time Limit: 1000 ms
// 
// Powered by CP Editor (https://cpeditor.org)#include<bits/stdc++.h>
#define eps 1e-5
#define INF 1e9
using namespace std;
typedef long long ll;
const int N = 2e6 + 9;
int a[N];
void Lan(){int s;cin>>s;vector<int> v;int num=9;while(s){if(s>num){s-=num;v.push_back(num);num--;}else{v.push_back(s);break;}}reverse(v.begin(),v.end());for(auto &i:v){cout<<i;}cout<<'\n';
}
int main() {ios::sync_with_stdio(false);cin.tie(0),cout.tie(0);int q;cin>>q;while (q--) {Lan();}return 0;
}

D.

1.

重点

学到了区间覆盖

先暴力枚举有几个可以覆盖

然后贪心

找最长的线段去覆盖

认定左边都是被上一个覆盖过了,所以只要枚举右边线段即可

因为写的是while所以我玄学了加了一个计时器如果超过1000就说明不存在方案即可

debug...

2.

dp

// Problem: D. Color with Occurrences
// Contest: Codeforces - Codeforces Round 811 (Div. 3)
// URL: https://codeforces.com/group/RAx5fiilkP/contest/1714/problem/D
// Memory Limit: 256 MB
// Time Limit: 2000 ms
// 
// Powered by CP Editor (https://cpeditor.org)#include<bits/stdc++.h>
#define eps 1e-5
#define INF 1e9
using namespace std;
typedef long long ll;
const int N = 1e5 + 9;
int dp[N],pre[N];
pair<int,int>a[N];
string ss[N];
void Lan(){string t;cin>>t;int m=t.length();t=" "+t;int n;cin>>n;for(int i=1;i<=n;i++){cin>>ss[i];}memset(dp,0x3f,sizeof(dp));dp[0]=0;int mx=dp[1];for(int i=1;i<=m;i++){for(int j=1;j<=n;j++){if(i>=ss[j].length()){if(t.substr(i-ss[j].length()+1,ss[j].length())==ss[j]){for(int l=(int)(i-ss[j].length());l<i;l++){if(dp[l]+1<dp[i]){dp[i]=dp[l]+1;pre[i]=l;a[i]={i-ss[j].length()+1,j};}}}}}}if(dp[m]==mx){cout<<-1<<'\n';}else{cout<<dp[m]<<'\n';int now=m;while(now){cout<<a[now].second<<" "<<a[now].first<<'\n';now=pre[now];}}}
int main() {ios::sync_with_stdio(false);cin.tie(0),cout.tie(0);int q;cin>>q;while (q--) {Lan();}return 0;
}

E.

找规律举几个数字

// Problem: E. Add Modulo 10
// Contest: Codeforces - Codeforces Round 811 (Div. 3)
// URL: https://codeforces.com/group/RAx5fiilkP/contest/1714/problem/E
// Memory Limit: 256 MB
// Time Limit: 2000 ms
// 
// Powered by CP Editor (https://cpeditor.org)#include<bits/stdc++.h>
#define eps 1e-5
#define INF 1e9
using namespace std;
typedef long long ll;
const int N = 2e6 + 9;
int a[N];
//发现有5和没5倍数在一起就不可能
//其他就抽成只有2,然后这样变化就+20,mod20看最后数字是不是一样即可
int work(int x){while(x%10!=2 && x%10!=0){x=x+x%10;}return x;
}
void Lan(){int n;cin>>n;for(int i=1;i<=n;i++){cin>>a[i];}int cnt=0;for(int i=1;i<=n;i++){if(a[i]%5==0){cnt++;}}if(cnt>0 && cnt<n){cout<<"No"<<'\n';return;}for(int i=1;i<=n;i++){a[i]=work(a[i]);}if(!cnt){for(int i=1;i<=n;i++){a[i]%=20;}}for(int i=1;i<=n-1;i++){if(a[i]!=a[i+1]){cout<<"No"<<'\n';return;}}cout<<"Yes"<<'\n';
}
int main() {ios::sync_with_stdio(false);cin.tie(0),cout.tie(0);int q;cin>>q;while (q--) {Lan();}return 0;
}

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

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

相关文章

SharedPreferences卡顿分析

SP的使用及存在的问题 SharedPreferences(以下简称SP)是Android本地存储的一种方式&#xff0c;是以key-value的形式存储在/data/data/项目包名/shared_prefs/sp_name.xml里&#xff0c;SP的使用示例及源码解析参见&#xff1a;Android本地存储之SharedPreferences源码解析。以…

【JAVA语言-第16话】集合框架(三)——Set、HashSet、LinkedHashSet、TreeSet集合的详细解析

目录 Set集合 1.1 概述 1.2 特点 1.3 HashSet集合 1.3.1 概述 1.3.2 哈希表 1.3.3 哈希值 1.3.4 练习 1.3.5 HashSet存储自定义类型元素 1.4 LinkedHashSet集合 1.4.1 概述 1.4.2 特点 1.4.3 练习 1.5 TreeSet集合 1.5.1 概述 1.5.2 练习 1.6 HashSet、Lin…

Pandas展开数据

def testExplode():df = pd.DataFrame({key: [A, B],data: [[1

【论文复现】

code&#xff1a; paper&#xff1a; 论文 介绍 方法 实验 结论 复现 Image generation 问题1&#xff1a;No models "dcface/dcface/pretrained_models/adaface_ir101_webface4m.ckpt Traceback (most recent call last):File "/data/dcface/dcface/src/r…

线性回归需要满足的几个假设

线性回归模型是基于一些假设构建的&#xff0c;这些假设有助于确保模型的有效性和可解释性。以下是线性回归需要满足的几个主要假设&#xff1a; 线性关系假设&#xff08;Linearity&#xff09;: 线性回归假设因变量&#xff08;目标变量&#xff09;与自变量&#xff08;特征…

如何通俗解释Docker是什么?

要想弄懂Docker&#xff0c;咱们得先从“容器化”讲起。 一、容器化技术及Docker的出现 容器化&#xff0c;它是一种轻量级、可移植的软件打包方式&#xff0c;你就想象成一个快递箱子&#xff0c;里面装着你的应用和所有需要运行的环境&#xff0c;这个箱子能在任何支持容器…

Redisson分布式锁介绍及实战应用(防止缓存击穿)

本地锁 浏览器把100w请求由网关随机往下传&#xff0c;在集群情况下&#xff0c;每台服务都放行10w请求过来&#xff0c;这时候每台服务都用的是本地锁是跨JVM的&#xff0c; 列如这些服务都没有49企业&#xff0c;此时有几个服务进行回原了打击在DB上面&#xff0c;那后期把这…

Blender教程(基础)-物体的移动、旋转与缩放-04

一、新建一个立方体 ShiftA新建一个立方体用来演示。 二、物体的移动 xyz轴移动 点击下图图左侧的移动选项后&#xff0c;选中要移动的物体&#xff0c;会出现三个箭头的方向&#xff0c;这分别代表沿着x、y、z轴移动。xyz平面移动 这个小正方体代表沿着某一个面移动&#…

AWS 专题学习 P14 (Security Encryption)

文章目录 专题总览为什么需要加密&#xff1f;AWS KMS&#xff08;密钥管理服务&#xff09;KMS 密钥类型AWS KMS&#xff08;密钥管理服务&#xff09;Copying Snapshots across regionsKMS Key Policies在不同账户之间复制快照KMS Multi-Region Keys (多区域密钥)DynamoDB 全…

ElasticSearch 学习笔记

基本概念 术语 文档&#xff08;document&#xff09;&#xff1a;每条记录就是一个文档&#xff0c;会以 JSON 格式进行存储 映射&#xff08;mapping&#xff09;&#xff1a;索引中文档字段的约束信息&#xff0c;类似 RDBMS 中的表结构约束&#xff08;schema&#xff09…

在linux上进行编译调试

1.相关疑问 1. 为什么在代码里使用了一个未定义过的函数&#xff08;如add()&#xff09;&#xff0c;在编译阶段不会报错&#xff0c;在链接阶段会报错呢&#xff1f; 答&#xff1a;先说几个代码编译的结论&#xff1a; 单个\.c源文件文件被编译成机器码文件时&#xff0c…

LVS 工作模式

1、LVS DR模式 DR 模式是通过改写请求报文的目标 MAC 地址&#xff0c;将请求发给真实服务器的&#xff0c;而真实服务器响应后的处理结果直接返回给客户端用户。DR 模式可以极大的提高集群系统的伸缩性。但是要求调度器 LB 与真实服务器 RS 都有一块网卡连接到同一物理网段上…

Codeforces Round 785 C. Palindrome Basis

C. Palindrome Basis 题意 定义一个正整数 a a a 是回文的&#xff08;没有前导 0 0 0&#xff09;当且仅当&#xff1a; a a a 的十进制表示形式回文 给定一个正整数 n n n &#xff0c;求出将 n n n 拆分成若干个回文数之和的方案数 思路 这是一个经典模型&#xff0…

媒体邀约:怎么吸引总体目标受众?

新闻媒体影响力日益扩大。不论是公司、机构还是其他&#xff0c;都希望能够通过新闻媒体的曝光来吸引更多总体目标受众。要想真正吸引住总体目标受众并非易事&#xff0c;需要一定的方案和方法。下面我们就深入探究媒体邀约推广的真相&#xff0c;共享怎么吸引总体目标受众的方…

秋招面试—计算机网络安全

2021 计算机网络安全 1.Get 和 Post 的区别 get 用于获取数据&#xff0c;post用于提交数据&#xff1b; get 的缓存保存在浏览器和web服务器日志中&#xff1b; get 使用明文传输&#xff0c;post请求保存在请求体中&#xff1b; get 长度限制在2048以内 2.常见的HTTP请…

Android P 屏保和休眠相关知识

Android P添加屏保功能&#xff0c;如果休眠时间设定大于屏保时间&#xff0c;则先进入屏保&#xff0c;达到休眠时间后再进入休眠 需求&#xff1a; 添加屏幕互保开关&#xff0c;默认关闭。只保留时钟&#xff0c;可设定指针和数字、夜间模式。启用时间改多长时间无操作进入…

小程序和vue/react的区别/优势

小程序优势&#xff1a; 1.即开即走&#xff0c;不需要下载app&#xff0c;可以通过微信直接打开更加方便快捷 2.天然流量优势&#xff0c;依赖于微信这个大量流量平台 3.相比于app的开发 小程序的开发是前端人员更快上手 4.代码包要求为2M以内 性能更加突出 5.微信宿主提…

IBeginDragHandler,IEndDragHandler,IDragHandler拖拽接口

IBeginDragHandler, IEndDragHandler, 和 IDragHandler 是Unity的接口&#xff0c;用于处理拖拽相关的功能。需要引用 UnityEngine.EventSystems。 IBeginDragHandler 这个接口定义了一个方法&#xff0c;该方法在玩家开始拖拽一个对象时被调用。它通常用于初始化拖拽相关的变量…

Excel-Apache POI

Apache POI是用Java编写的免费开源的跨平台的Java API&#xff0c;Apache POI提供API给Java程 序对Microsoft Office格式档案读和写的功能&#xff0c;其中使用最多的就是使用POI操作Excel文 件。 Apache POI常用的类 HSSF &#xff0d; 提供读写Microsoft Excel XLS格式档案…

###C语言程序设计-----C语言学习(6)#

前言&#xff1a;感谢老铁的浏览&#xff0c;希望老铁可以一键三连加个关注&#xff0c;您的支持和鼓励是我前进的动力&#xff0c;后续会分享更多学习编程的内容。 一. 主干知识的学习 1. while语句 除了for语句以外&#xff0c;while语句也用于实现循环&#xff0c;而且它…