博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Educational Codeforces Round 68 (Rated for Div. 2) A B C
阅读量:5162 次
发布时间:2019-06-13

本文共 1126 字,大约阅读时间需要 3 分钟。

A

#include
using namespace std;#define ll long longconst int N=1e5+100;int main(){ int t; cin >> t; while(t--){ ll n , x; cin >> n >>x; cout << 2ll * x << "\n"; } return 0;}

  

B

特判行列相交的点

#include
using namespace std;#define ll long longconst int N=1e5+100;int q;int n,m;int d1[N];int d2[N];int main(){ cin >> q; while(q--){ cin >> n >> m; int a[n+10][m+10]; for(int i=0;i
> c; if(c=='*') { a[i][j]=1; d1[i]++,d2[j]++; } else a[i][j]=0; } } int m1=n*m; for(int i=0;i

  

C

s长度需要小于t,s串顺序在t串中必须存在,s串和p串每个字母的数量之和要大于t串。

#include
using namespace std;#define ll long longconst int N=1e5+100;int q;char s[3][200];int a[3][26];int main(){ cin >> q; while(q--){ for(int i=0;i<3;i++){ cin >> s[i]; for(int j=0;j<26;j++){ a[i][j]=0; } } int l1=strlen(s[0]),l2=strlen(s[1]); if(l1>l2){ cout << "NO\n"; continue; } int i1=0,i2=0; for( i2=0;i2
a[1][i]){ cout << "NO\n"; flag=1; break; } } if(flag) continue; cout << "YES\n"; } return 0;}

  

转载于:https://www.cnblogs.com/YJing814/p/11190755.html

你可能感兴趣的文章
每天努力一点之SQL
查看>>
UINavigationBar-使用总结
查看>>
夺命雷公狗jquery---11属性操作
查看>>
linux 常用命令
查看>>
display属性和属性值(18个属性值,常见面试题)
查看>>
微信小程序图片使用示例
查看>>
设计模式之工厂模式
查看>>
函数声明之function与var
查看>>
SparkSQL基础
查看>>
Ubuntu16.04+cuda8.0rc+opencv3.1.0+caffe+Theano+torch7搭建教程
查看>>
线段树区间加乘(模板)
查看>>
自定义视图,视图控制器的生命周期
查看>>
Layui 快速入门地址
查看>>
[Javascript] Creating an Immutable Object Graph with Immutable.js Map()
查看>>
Foo是啥意思?
查看>>
2019.4.25 表格表单与HTML5 && CSS3
查看>>
gdb调试(二)
查看>>
递归回溯法解决八皇后问题
查看>>
12.17 Nginx负载均衡 12.18 ssl原理 12.19 生成ssl密钥对 12.20 Nginx配置ssl
查看>>
CentOS 7 上 yum 安装python3
查看>>