Codeforces Round 504
(交互题真神奇,,,我自己瞎写了一发目测样例都没过去就AC了。。。)
(只出了两题的竟然没掉下蓝名真是可怕)
A:我的代码太不美观了,放个同学的(因为我是c++63分的蒟蒻所以根本不知道那些函数怎么用只能手写被hack)
这个题本身不难,坑点太多了,很囍的是我在2:13分的时候被hack了,,GG
#include<cstdio>
#include<iostream>
#include<cstring>
#include<cstdlib>
#include<climits>
#include<vector>
#include<set>
#include<cmath>
#include<queue>
#include<algorithm>
using namespace std;
int n,m;
signed main() {
cin>>n>>m;
if (n > m + ) return puts("NO"), ;
std::string s, t;
std::cin >> s >> t;
int star = ;
for (auto i : s) if (i == '*') star = ;
if (!star && s != t) return puts("NO");
std::string pre = s.substr(, s.find('*')), suf = s.substr(s.find('*') + );
int pres = pre.size(), sufs = suf.size();
if (t.substr(, pres) == pre && t.substr(m - sufs) == suf) puts("YES");
else puts("NO");
}
B:自认非常优雅
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
ll n,k;
int main(){
scanf("%lld%lld",&n,&k);
ll ans = ;
if(k>n){
ll tmp = k-n;
ans = (n-tmp+)/;
} else{
ll tmp = k-;
ans = (tmp-+)/;
}
ans =ans>?ans:;
printf("%lld\n",ans);
}
C:
太困了又刚补了几话狐妖又吸了冰毒 喝了冷藏的维他柠檬茶 导致一开始的思路是错的,,,还wa了两发。。。其实是个大水题
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
int n,k;
char s[];
int main() {
scanf("%d%d", &n, &k);
scanf("%s", s + );
k/=;
int cnt = ,cnt2=;
for(int i=;i<=n;i++){
if(s[i]=='(')
cnt++;
else
cnt2++;
printf("%c",s[i]);
if(cnt==k)
break;
}
cnt2 = cnt-cnt2;
while (cnt2--){
printf(")");
}
}
D:旁边哥们吐槽没读懂题,,其实我也没读懂,我是交了两发wa了之后才勉强猜对的题意,GG
题意:我语文不好啊
给你n个数,q次操作,每次操作按照从1到q的顺序 对 任意区间赋值成 那个数,第一次赋值1,第二次赋值2, n个数中为0的数可以自由变成任意数,其他数不能改变, 问 q次操作后能否得到 给定 序列,并输出序列。 自己结合样例好好读读吧,,真的挺难懂的。。
想了很多骚操作还是直接线段树好。。
我觉着只要做了这个题代码是非常好懂的,我就不细说了
#include <bits/stdc++.h> typedef long long ll;
using namespace std;
const int N = 2e5 + ;
int n, q;
int a[N], vis[N],l[N],r[N],flag[N];
int minn[*N]; void build(int k, int l, int r) {
if (l == r) {
minn[k] = a[l];
return;
}
int mid = (l + r) >> ;
build(k << , l, mid);
build(k << | , mid + , r);
minn[k] = min(minn[k*],minn[k*+]);
} void update(int k, int l, int r) { } int query(int k, int lef, int rig, int l, int r) {
if (l <= lef && r >= rig)
return minn[k];
int mid = (lef + rig) / ;
int ans = 1e9;
if (l <= mid)
ans = min(ans, query(k * , lef, mid, l, r));
if (r > mid)
ans = min(ans, query(k << | , mid + , rig, l, r));
return ans;
} int main() {
scanf("%d%d", &n, &q);
for (int i = ; i <= n; i++)
scanf("%d", &a[i]);
for (int i = ; i <= n; i++) {
int j = i + ;
while (j <= n && (a[j] == a[i] || a[j] == )) {
if (a[j] == ) {
a[j] = a[i];
flag[j]=;
}
j++;
}
vis[a[i]] = ;
i = j - ;
}
int temp = ;
if(a[]!=&&!vis[q]){
for(int i=;i<=n;i++){
if(flag[i]){
a[i]=q;
vis[q]=;
break;
}
}
if(!vis[q]) {
printf("NO\n");
return ;
}
}
if (a[] == ) {
if (!vis[q]) {
temp = q;
} else {
for (int i = ; i <= n; i++) {
if (a[i] != ) {
temp = a[i];
break;
}
}
}
for (int i = ; i <= n; i++) {
if (a[i] == )
a[i] = temp;
}
}
for(int i=;i<=n;i++){
if(l[a[i]]==)
l[a[i]]=i;
r[a[i]]=i;
}
build(,,n);
for(int i=;i<=q;i++){
if(l[i]==)
continue;
if(query(,,n,l[i],r[i])<i){
printf("NO\n");
return ;
}
}
printf("YES\n");
for(int i=;i<=n;i++){
printf("%d ",a[i]);
}
}
E : 第一次做交互题,,瞎写一发入魂,,(当然不是昨晚上。。。)
感觉就是个贪心啊,,我也不知道为啥我这么做就是对的
#include <cstdio>
#include <iostream>
#include <cstring>
#include <algorithm> using namespace std;
int n; bool ask(int n,int m,int x,int y){
cout<<"? "<<n<<" "<<m<<" "<<x<<" "<<y<<endl;
string s;
cin>>s;
return s[]=='Y';
}
int main(){
string ans1="";
string ans2="";
scanf("%d",&n);
int i=,j=;
int cnt =;
while (i<=n&&j<=n&&++cnt<=(n-)){
if(ask(i,j+,n,n)){
j++;
ans1+="R";
} else{
i++;
ans1+="D";
}
}
i=n;j=n;cnt=;
while (i>=&&j>=&&++cnt<=n-){
if(ask(,,i-,j)){
i--;
ans2+="D";
} else{
j--;
ans2+="R";
}
}
reverse(ans2.begin(),ans2.end());
printf("! ");
cout<<ans1<<ans2;
}
讲道理这套题要是放到我状态很好的时候我真有可能5题。。。当然很好这种东西一般不存在。。
我昨晚就出了BC两道题。。。惊了。。。
有个可怜的计科老兄被查重误判skip了。。。我也是第一次听说这种操作。。。
两题竟然还是蓝名,惊了。。。
今中午要好好睡午觉!!!md4点睡的八点多就起来来实验室补题结果没开门。。。(笔记本被我折磨了5个多小时gg了,,没带电源回去)
今晚edu可别再掉了,,,根据我的经验我现在已经达到极小点要开始反弹上紫了(雾
扩了一波学长的好友现在有将近十个好友注册了很开森QwQ
Codeforces Round 504的更多相关文章
- Codeforces Round #504 E. Down or Right
Codeforces Round #504 E. Down or Right 题目描述:交互题. 有一个\(n \times n\)的方阵,有一些格子是障碍,从\((1, 1)\)出发,只能向右向下走 ...
- Codeforces Round #504 D. Array Restoration
Codeforces Round #504 D. Array Restoration 题目描述:有一个长度为\(n\)的序列\(a\),有\(q\)次操作,第\(i\)次选择一个区间,将区间里的数全部 ...
- Codeforces 1023 A.Single Wildcard Pattern Matching-匹配字符 (Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Fi)
Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Final) A. Single Wildcard Patter ...
- E - Down or Right Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Final)
http://codeforces.com/contest/1023/problem/E 交互题 #include <cstdio> #include <cstdlib> #i ...
- Codeforces Round #504:D. Array Restoration
D. Array Restoration 题目链接:https://codeforces.com/contest/1023/problem/D 题意: 给出一个序列,现在要求对一个全为0的序列执行q次 ...
- Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Final)-D- Array Restoration
我们知道不满足的肯定是两边大中间小的,这样就用RMQ查询两个相同等值的区间内部最小值即可,注意边界条件 #include<bits/stdc++.h> #define x first #d ...
- Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Final)-C-Bracket Subsequence
#include<iostream> #include<stdio.h> #include<string.h> #include<algorithm> ...
- Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Final)-A-Single Wildcard Pattern Matching
#include<iostream> #include<algorithm> #include<stdio.h> #include<string.h> ...
- Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Final) E. Down or Right
从(1,1,n,n)每次只变一个坐标,进行询问. 如果问到对角线有距离限制, 再从(1,1,n/2,n/2)询问到(n/2,n/2,n,n) 记住前半部分贪心忘上走,后本部分贪心往右走 因为最后的路线 ...
随机推荐
- mormot支持TCP/IP
mormot支持TCP/IP http.sys本来就构建于TCP/IP之上,因此HTTP.SYS是支持TCP/IP连接的. 笔者为此特意写了一个测试DEMO.TCP/IP连接成功. 如果客户端过一段时 ...
- vue把localhost改成ip地址无法访问—解决方法
打开package.json文件,找到下面的代码 "scripts": { "dev": "webpack-dev-server --inline - ...
- Android Chromium WebView学习启动篇
Android从4.4起提供基于Chromium实现的WebView.此前WebView基于WebKit实现.WebKit提供网页解析.布局和绘制以及JS执行等基础功能.Chromium在WebKit ...
- [Linux] - 网速测试命令
Windows网速测试方法有很多,或者可以直接使用浏览器去一些网站上搜索测试即可. 在Linux中其实更容易,只需要一行命令即可搞定: curl -s https://raw.githubuserco ...
- [Python设计模式] 第20章 挨个买票——迭代器模式
github地址:https://github.com/cheesezh/python_design_patterns 迭代器模式 迭代器模式,提供一种方法顺序访问一个聚合对象中各个元素,而又不暴露该 ...
- [Python设计模式] 第17章 程序中的翻译官——适配器模式
github地址:https://github.com/cheesezh/python_design_patterns 适配器模式 适配器模式,将一个类的接口转换成客户希望的另外一个接口.Adapte ...
- JAVA_HOME环境配置
JAVA_HOME指明JDK安装路径,就是刚才安装时所选择的路径D:\java\jdk1.5.0_08 Path使得系统可以在任何路径下识别java命令,设为:%JAVA_HOME%\bin;%JAV ...
- 对 IIC 总线的理解、调用函数以及常见面试问题
一.IIC 总线概述: IIC 即Inter-Integrated Circuit(集成电路总线) I2C总线是PHLIPS公司推出的一种串行总线, I2C总线只有两根双向信号线.一根是数据线SDA, ...
- Mathematica绘制曲面交线方法(方法二)
MeshFunction方式 Show[Graphics3D[{Opacity[0.5], Ball[{0, 0, 0}, 2]}], ParametricPlot3D[{4 + (3 + Cos[v ...
- 物联网架构成长之路(30)-Spring Boot Admin微服务WebUI监控
0. 前言 一个完整的微服务解决方案包含了许多微服务,基于我们需要观察各个微服务的运行状态,因此Spring Boot 生态提供了Spring Boot Admin 这个组件来实现微服务管理WEB U ...