Codeforces Beta Round #76 (Div. 2 Only)
Codeforces Beta Round #76 (Div. 2 Only)
http://codeforces.com/contest/94
A
- #include<bits/stdc++.h>
- using namespace std;
- #define lson l,mid,rt<<1
- #define rson mid+1,r,rt<<1|1
- #define sqr(x) ((x)*(x))
- #define pb push_back
- #define eb emplace_back
- #define maxn 200005
- #define eps 1e-8
- #define pi acos(-1.0)
- #define rep(k,i,j) for(int k=i;k<j;k++)
- typedef long long ll;
- typedef pair<int,int> pii;
- typedef pair<char,int> pci;
- typedef pair<pair<int,string>,pii> ppp;
- typedef unsigned long long ull;
- const long long MOD=1e9+;
- /*#ifndef ONLINE_JUDGE
- freopen("1.txt","r",stdin);
- #endif */
- string s[];
- string s1[];
- int main(){
- #ifndef ONLINE_JUDGE
- // freopen("1.txt","r",stdin);
- #endif
- std::ios::sync_with_stdio(false);
- string str;
- cin>>str;
- for(int i=;i<;i++){
- cin>>s[i];
- }
- for(int i=;i<;i++){
- for(int j=;j<;j++){
- s1[i]+=str[i*+j];
- }
- }
- for(int i=;i<;i++){
- for(int j=;j<;j++){
- if(s1[i]==s[j]){
- cout<<j;
- break;
- }
- }
- }
- }
B
- #include<bits/stdc++.h>
- using namespace std;
- #define lson l,mid,rt<<1
- #define rson mid+1,r,rt<<1|1
- #define sqr(x) ((x)*(x))
- #define pb push_back
- #define eb emplace_back
- #define maxn 200005
- #define eps 1e-8
- #define pi acos(-1.0)
- #define rep(k,i,j) for(int k=i;k<j;k++)
- typedef long long ll;
- typedef pair<int,int> pii;
- typedef pair<char,int> pci;
- typedef pair<pair<int,string>,pii> ppp;
- typedef unsigned long long ull;
- const long long MOD=1e9+;
- /*#ifndef ONLINE_JUDGE
- freopen("1.txt","r",stdin);
- #endif */
- int d[];
- int main(){
- #ifndef ONLINE_JUDGE
- // freopen("1.txt","r",stdin);
- #endif
- std::ios::sync_with_stdio(false);
- string str;
- int n;
- cin>>n;
- int u,v;
- for(int i=;i<=n;i++){
- cin>>u>>v;
- d[u]++;
- d[v]++;
- }
- for(int i=;i<=;i++){
- if(d[i]!=){
- cout<<"WIN"<<endl;
- return ;
- }
- }
- cout<<"FAIL"<<endl;
- }
C
找规律
- #include<bits/stdc++.h>
- using namespace std;
- #define lson l,mid,rt<<1
- #define rson mid+1,r,rt<<1|1
- #define sqr(x) ((x)*(x))
- #define pb push_back
- #define eb emplace_back
- #define maxn 200005
- #define eps 1e-8
- #define pi acos(-1.0)
- #define rep(k,i,j) for(int k=i;k<j;k++)
- typedef long long ll;
- typedef pair<int,int> pii;
- typedef pair<char,int> pci;
- typedef pair<pair<int,string>,pii> ppp;
- typedef unsigned long long ull;
- const long long MOD=1e9+;
- /*#ifndef ONLINE_JUDGE
- freopen("1.txt","r",stdin);
- #endif */
- int main(){
- #ifndef ONLINE_JUDGE
- // freopen("1.txt","r",stdin);
- #endif
- std::ios::sync_with_stdio(false);
- long long n,m,a,b;
- cin>>n>>m>>a>>b;
- int s,t;
- s=a/m+(a%m!=);
- t=b/m+(b%m!=);
- if(m==){
- cout<<;
- return ;
- }
- if(b==n){
- if(a%m==||s==t) cout<<;
- else cout<<;
- return ;
- }
- if((a%m==&&b%m==)||s==t) {cout<<;return ;}
- if(a%m==||b%m==||s+==t||(b+)%m==a%m) cout<<;
- else cout<<;
- }
D
贪心
- #include<bits/stdc++.h>
- using namespace std;
- #define lson l,mid,rt<<1
- #define rson mid+1,r,rt<<1|1
- #define sqr(x) ((x)*(x))
- #define pb push_back
- #define eb emplace_back
- #define maxn 200005
- #define eps 1e-8
- #define pi acos(-1.0)
- #define rep(k,i,j) for(int k=i;k<j;k++)
- typedef long long ll;
- typedef pair<int,int> pii;
- typedef pair<char,int> pci;
- typedef pair<pair<int,string>,pii> ppp;
- typedef unsigned long long ull;
- const long long MOD=1e9+;
- /*#ifndef ONLINE_JUDGE
- freopen("1.txt","r",stdin);
- #endif */
- int cnt[];
- int g[][];
- int main(){
- #ifndef ONLINE_JUDGE
- // freopen("1.txt","r",stdin);
- #endif
- // std::ios::sync_with_stdio(false);
- int n,w,m,i,j;
- cin>>n>>w>>m;
- for(i=;i<n;i++)cnt[i]=m;
- int ii=;
- for(i=;i<m;i++){
- int k=n;
- while(k>){
- if(cnt[ii]==)
- ii++;
- cnt[ii]--;
- k--;
- g[ii][i]++;
- }
- }
- for(i=;i<n;i++){
- int cc=;
- for(j=;j<m;j++)
- if(g[i][j])
- cc++;
- if(cc>=)
- break;
- }
- if(i<n)
- cout<<"NO"<<endl;
- else{
- cout<<"YES"<<endl;
- for(i=;i<m;i++){
- bool f=;
- for(j=;j<n;j++)
- if(g[j][i]){
- if(f)
- f=;
- else
- cout<<" ";
- printf("%d %.8lf",j+,(g[j][i]*(double)w)/m);
- }
- cout<<endl;
- }
- }
- }
E
暴力搜索
- #include<bits/stdc++.h>
- using namespace std;
- #define lson l,mid,rt<<1
- #define rson mid+1,r,rt<<1|1
- #define sqr(x) ((x)*(x))
- #define pb push_back
- #define eb emplace_back
- #define maxn 200005
- #define eps 1e-8
- #define pi acos(-1.0)
- #define rep(k,i,j) for(int k=i;k<j;k++)
- typedef long long ll;
- typedef pair<int,int> pii;
- typedef pair<char,int> pci;
- typedef pair<pair<int,string>,pii> ppp;
- typedef unsigned long long ull;
- const long long MOD=1e9+;
- /*#ifndef ONLINE_JUDGE
- freopen("1.txt","r",stdin);
- #endif */
- int target;
- int best = ;
- int op1[], op2[], op3[], bop1[], bop2[], bop3[];
- int reg[];
- int N;
- void dfs(int lv){
- if (lv>=best)return;
- int i,j,k;
- for(i=;i<N;i++) if (lv<best && reg[i]==target) {
- best=lv;
- for(j=;j<lv;j++) {
- bop1[j]=op1[j], bop2[j]=op2[j], bop3[j]=op3[j];
- }
- return;
- }
- if (lv>=best-) return;
- for(i=;i<N;i++) for(j=;j<N;j++) for (k=;k<=;k*=){
- if (reg[i] + k*reg[j] > target) continue;
- reg[N++] = reg[i] + k*reg[j];
- op1[lv]=i; op2[lv]=k; op3[lv]=j;
- dfs(lv+);
- N--;
- }
- }
- int main(){
- #ifndef ONLINE_JUDGE
- // freopen("1.txt","r",stdin);
- #endif
- std::ios::sync_with_stdio(false);
- cin>>target;
- reg[]=, reg[]=; N=;
- dfs();
- cout<<best<<endl;
- int i;
- for(i=;i<best;i++) {
- cout<<"lea e" << (char)('a'++i)<<"x, [e" << (char)('a'+bop1[i])<<"x + " << bop2[i]<<"*e" << (char)('a'+bop3[i]) << "x]" << endl;
- }
- }
Codeforces Beta Round #76 (Div. 2 Only)的更多相关文章
- Codeforces Beta Round #80 (Div. 2 Only)【ABCD】
Codeforces Beta Round #80 (Div. 2 Only) A Blackjack1 题意 一共52张扑克,A代表1或者11,2-10表示自己的数字,其他都表示10 现在你已经有一 ...
- Codeforces Beta Round #83 (Div. 1 Only)题解【ABCD】
Codeforces Beta Round #83 (Div. 1 Only) A. Dorm Water Supply 题意 给你一个n点m边的图,保证每个点的入度和出度最多为1 如果这个点入度为0 ...
- Codeforces Beta Round #79 (Div. 2 Only)
Codeforces Beta Round #79 (Div. 2 Only) http://codeforces.com/contest/102 A #include<bits/stdc++. ...
- Codeforces Beta Round #77 (Div. 2 Only)
Codeforces Beta Round #77 (Div. 2 Only) http://codeforces.com/contest/96 A #include<bits/stdc++.h ...
- Codeforces Beta Round #75 (Div. 2 Only)
Codeforces Beta Round #75 (Div. 2 Only) http://codeforces.com/contest/92 A #include<iostream> ...
- Codeforces Beta Round #74 (Div. 2 Only)
Codeforces Beta Round #74 (Div. 2 Only) http://codeforces.com/contest/90 A #include<iostream> ...
- Codeforces Beta Round #73 (Div. 2 Only)
Codeforces Beta Round #73 (Div. 2 Only) http://codeforces.com/contest/88 A 模拟 #include<bits/stdc+ ...
- Codeforces Beta Round #72 (Div. 2 Only)
Codeforces Beta Round #72 (Div. 2 Only) http://codeforces.com/contest/84 A #include<bits/stdc++.h ...
- Codeforces Beta Round #70 (Div. 2)
Codeforces Beta Round #70 (Div. 2) http://codeforces.com/contest/78 A #include<bits/stdc++.h> ...
随机推荐
- js 在光标位置插入内容
原文:https://blog.csdn.net/smartsmile2012/article/details/53642082 createDocumentFragment()用法: https:/ ...
- keyword模块
导入关键字模块 import keyword 列出当前系统中Python的关键字 >>> keyword.kwlist ['and', 'as', 'assert', 'break' ...
- day17-函数装饰器
一.什么是装饰器 装饰器可以让其他函数在不需要做任何代码改变的前提下,增加额外的功能,装饰器的返回值也是一个函数对象.在 Python 中,函数是第一类对象,也就是说,函数可以做为参数传递给另外一个函 ...
- js人形时钟
https://blog.csdn.net/rsylqc/article/details/44808063 分享自:http://chabudai.org/blog/?p=59 在这个网站看到一个很有 ...
- opencv-3.3安装记录-ubuntu 14.04
这个二逼问题不会是最后一次. ipcv-****.tar.gz 这个文件在cmake的时候会卡住,这里先下载这个文件,大概38M,放到.cache/ippcv目录下就可以了.貌似还需要改下名字. 就可 ...
- Leetcode 题解 Longest Substring Without Repeating Characters_需要重做
最长的没有重复的字符串. 这个题其实不难.但是我第二次做了,硬是把它做出了难的感觉... 变量命名要合理.可读性强.
- jquery循环方法
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- 池以及barrier简单
用了下CyclicBarrier,注意线程池中的线程数量设置,还有就是DB连接的时候,需要考虑单个DB能承受的最大连接数目和每个连接上能同时打开的cursor等限制,需要时可以通过jstack查看堆栈 ...
- 通过SSH克隆远程仓库(GitLab)到本地
由于不是任何用户都能从远程仓库克隆到本地的,也是需要鉴别的,因此本地需要用git bash 创建一个公钥,而远程仓库也要把这个公钥保存下来,进而本地才可以从远程download.主要步骤如下: 1.首 ...
- angular指令的compile,prelink 和 postlink以及controller
一. 指令模板选项有complie和link两个字段,两者之间存在如下关系: 当compile字段存在时,link字段将被忽略,compile函数的返回值将作为link字段. 当compile不存在, ...