(交互题真神奇,,,我自己瞎写了一发目测样例都没过去就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的更多相关文章

  1. Codeforces Round #504 E. Down or Right

    Codeforces Round #504 E. Down or Right 题目描述:交互题. 有一个\(n \times n\)的方阵,有一些格子是障碍,从\((1, 1)\)出发,只能向右向下走 ...

  2. Codeforces Round #504 D. Array Restoration

    Codeforces Round #504 D. Array Restoration 题目描述:有一个长度为\(n\)的序列\(a\),有\(q\)次操作,第\(i\)次选择一个区间,将区间里的数全部 ...

  3. 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 ...

  4. 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 ...

  5. Codeforces Round #504:D. Array Restoration

    D. Array Restoration 题目链接:https://codeforces.com/contest/1023/problem/D 题意: 给出一个序列,现在要求对一个全为0的序列执行q次 ...

  6. 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 ...

  7. 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> ...

  8. 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> ...

  9. 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) 记住前半部分贪心忘上走,后本部分贪心往右走 因为最后的路线 ...

随机推荐

  1. 【独家】硅谷创业公司在中国常跌的五个坑|禾赛科技CEO李一帆柏林亚太周主题演讲

    [独家]硅谷创业公司在中国常跌的五个坑|禾赛科技CEO李一帆柏林亚太周主题演讲 李一帆 Xtecher特稿作者 关注  Xtecher推荐   演讲者:李一帆   翻译:晓娜   网址:www.xt ...

  2. centOS --- 安装最新版的node nodejs

    对于 RHEL, CentOS or Fedora 系统,Node.js v8 LTS版本命令: curl –silent –location https://rpm.nodesource.com/s ...

  3. xhprof查看性能测试图一直报错:failed to execute cmd: " dot -Tpng"多种因素解决方案

    xhprof查看性能测试图一直报错:failed to execute cmd: ” dot -Tpng”多种因素解决方案最近在新环境进行php代码性能测试,用了xhprof这个工具,搭建好以后,点击 ...

  4. SSE图像算法优化系列六:OpenCv关于灰度积分图的SSE代码学习和改进。

    最近一直沉迷于SSE方面的优化,实在找不到想学习的参考资料了,就拿个笔记本放在腿上翻翻OpenCv的源代码,无意中看到了OpenCv中关于积分图的代码,仔细研习了一番,觉得OpenCv对SSE的灵活运 ...

  5. C# System.IO.FileStream

    为文件提供 Stream,既支持同步读写操作,也支持异步读写操作. using System; using System.IO; using System.Text; class Test { pub ...

  6. 使用Guava的RateLimiter完成简单的大流量限流

    限流的一般思路: 1.随机丢弃一定规则的用户(迅速过滤掉90%的用户): 2.MQ削峰(比如设一个MQ可以容纳的最大消息量,达到这个量后MQ给予reject): 3.业务逻辑层使用RateLimite ...

  7. github远程建了分支,本地看不到的问题

    原因:Git  branch -a 查看的是本地仓库的所有分支  远程新建的没有同步前 就是看不到 解决:$git checkout master   //首先切到master分支 $git pull ...

  8. http://www.360doc.com/userhome.aspx?userid=5054188&cid=235

    http://www.360doc.com/userhome.aspx?userid=5054188&cid=235

  9. Effective Java 第三版——70. 对可恢复条件使用检查异常,对编程错误使用运行时异常

    Tips 书中的源代码地址:https://github.com/jbloch/effective-java-3e-source-code 注意,书中的有些代码里方法是基于Java 9 API中的,所 ...

  10. 配置Windows 2008 R2 防火墙允许远程访问SQL Server 2008 R2

    1.先修改 sql server 2008R2的端口号吧,1433经常成为别人入侵的端口,在sql server 配置管理器 -->sql server 网络配置-->MSSQLSERVE ...