话说,总有人认为我是黑别人电脑的(雾??其实,我不黑电脑,我黑手机

T1

此题巨水,比较四个面积就就好了。。

/* make by ltao */
#include <iostream>
#include <cstdio>
#include <stack>
#include <queue>
#include <deque>
#include <algorithm>
#include <cstring>
#include <string>
#include <vector>
#include <list>
#include <map>
#include <time.h>
#include <cmath>
#include <math.h>
#include <fstream>
typedef long long ll;
typedef unsigned long long ull;
typedef double db;
#define inf 1e6
#define sz 666666
#define fake int
#define re return
#define get() getchar()
using namespace std;
int read(){
    int x=0;bool f=0;
    char ch=get();
    while(ch<'0'||ch>'9'){
        if(ch=='-') f=1;
        ch=get();
    }
    while(ch<='9'&&ch>='0'){
        x=(x<<1)+(x<<3)+(ch-'0');
        ch=get();
    }
    re f?-x:x;
}
int t,a,b,x,y;
int main(){
    //freopen("EE.in","r",stdin);
    t=read();
    while(t--){
        a=read();b=read();x=read();y=read();
        printf("%d\n",max(max((a-x-1)*b,(x)*b),max((b-y-1)*a,y*a)));
    }

    re 0;
}

至于我为什么把 那个 return define 成了 re ,这是一种信仰吧。

T2

此题做法显然,但是,最好判一下最后是不是单独一个。。

/* make by ltao */
#include <iostream>
#include <cstdio>
#include <stack>
#include <queue>
#include <deque>
#include <algorithm>
#include <cstring>
#include <string>
#include <vector>
#include <list>
#include <map>
#include <time.h>
#include <cmath>
#include <math.h>
#include <fstream>
typedef long long ll;
typedef unsigned long long ull;
typedef double db;
#define inf 1e6
#define sz 666666
#define fake int
#define re return
#define get() getchar()
using namespace std;
int read(){
    int x=0;bool f=0;
    char ch=get();
    while(ch<'0'||ch>'9'){
        if(ch=='-') f=1;
        ch=get();
    }
    while(ch<='9'&&ch>='0'){
        x=(x<<1)+(x<<3)+(ch-'0');
        ch=get();
    }
    re f?-x:x;
}
const int Maxn=1e5+11;
int t,a,b,cc,cnt;
struct Node{
    int l,r;//l 闭 ,r开
    char d;
}aa[Maxn];
char c[Maxn];
int main(){
//  freopen("EE.in","r",stdin);
    t=read();
    while(t--){
        a=read();b=read();cc=read();cnt=0;
        scanf("%s",c+1);
        int len=strlen(c+1);
        int last=1;
        for(int i=2;i<=len;i++){
            if(c[i]!=c[i-1]){
                aa[++cnt].d=c[i-1];
                aa[cnt].l=last;aa[cnt].r=i;
                last=i;
            }
        }
        aa[++cnt].d=c[len];
        aa[cnt].l=last;aa[cnt].r=len+1;
        int s=0,ind=len;
        for(int i=(aa[cnt].l==len)?cnt-1:cnt;i>=1;i--){
            s+=aa[i].d=='A'?a:b;
            if(s>cc) break;
            ind=aa[i].l;
        }
        printf("%d\n",ind);
    }
    re 0;
}

T3

此题做法真是(雾,因为我看到了他的 \(\sum n=100\) ,然后因为信仰打了爆搜,考场的时候过了,,然后,再测就 TLE

然后,事实上有贪心的想法,而且是成立的。。其实有道理

/* make by ltao */
#include <iostream>
#include <cstdio>
#include <stack>
#include <queue>
#include <deque>
#include <algorithm>
#include <cstring>
#include <string>
#include <vector>
#include <list>
#include <map>
#include <time.h>
#include <cmath>
#include <math.h>
#include <fstream>
typedef long long ll;
typedef unsigned long long ull;
typedef double db;
#define inf 1e6
#define sz 666666
#define fake int
#define re return
#define get() getchar()
using namespace std;
int read(){
    int x=0;bool f=0;
    char ch=get();
    while(ch<'0'||ch>'9'){
        if(ch=='-') f=1;
        ch=get();
    }
    while(ch<='9'&&ch>='0'){
        x=(x<<1)+(x<<3)+(ch-'0');
        ch=get();
    }
    re f?-x:x;
}
const int Maxn=1e3+11;
int t,b[Maxn],a[Maxn*2],n;
bool f,flag[Maxn];
void solve(){
    for(int i=1;i<=n;++i){
        bool f=0;
        for(int j=a[2*i-1]+1;j<=2*n;++j)if(!flag[j]){
            a[2*i]=j;
            flag[j]=1;
            f=1;break;
        }
        if(!f){
            printf("-1\n");return;
        }
    }
    for(int i=1;i<=2*n;++i)printf("%d ",a[i]);
    printf("\n");
}

int main(){
    //freopen("EE.in","r",stdin);
    t=read();
    while(t--){
        memset(flag,0,sizeof flag);f=0;
        n=read();
        for(int i=1;i<=n;i++) {
            b[i]=read();
            flag[b[i]]=1;
            a[i*2-1]=b[i];
        }
        if(!flag[1]||flag[n*2]){
            printf("-1\n");
            continue;
        }
        solve();
    }
    re 0;
}

T4

此题真是太心酸了。

其实,用贪心的想法,做好堆就好了。。其实是大根堆。。。

#include<cstdio>
#include <iostream>
#include<algorithm>
#include<queue>
#include<vector>
using namespace std;
typedef long long ll;
const int MAXN=200010;
int n;
ll totw,ans;
struct Node{
    int num,w;
}a[MAXN];
bool cmp(Node x,Node y){
    if(x.num!=y.num)return x.num<y.num;
    else return x.w>y.w;
}
int main(){
//  freopen("EE.in","r",stdin);
    scanf("%d",&n);
    for(int i=1;i<=n;++i)scanf("%d",&a[i].num);
    for(int i=1;i<=n;++i)scanf("%d",&a[i].w);
    sort(a+1,a+n+1,cmp);
    priority_queue<int> q;
    for(int i=2;i<=n;++i){
        if(a[i-1].num==a[i].num){
            totw+=a[i].w;//记录同一位置的总和
            q.push(a[i].w);
        }
        else{
            for(int p=a[i-1].num+1;totw>0&&p<=a[i].num-1;++p){
                ans+=totw;
                totw-=q.top();q.pop();
            }
            ans+=totw;
            if(totw>0&&a[i].w<q.top()){
                totw-=q.top();q.pop();
                totw+=a[i].w;q.push(a[i].w);
            }
        }
    }
    while(totw>0){
        ans+=totw;
        totw-=q.top();q.pop();
    }
    printf("%lld\n",ans);
    return 0;
}

这几次成绩不好的原因

  1. 实力太弱
  2. 缺乏分析
  3. 没有想法

所以,oi之路漫漫,吾将上下而求索

CF #623 div.2的更多相关文章

  1. CF #376 (Div. 2) C. dfs

    1.CF #376 (Div. 2)    C. Socks       dfs 2.题意:给袜子上色,使n天左右脚袜子都同样颜色. 3.总结:一开始用链表存图,一直TLE test 6 (1)如果需 ...

  2. CF #375 (Div. 2) D. bfs

    1.CF #375 (Div. 2)  D. Lakes in Berland 2.总结:麻烦的bfs,但其实很水.. 3.题意:n*m的陆地与水泽,水泽在边界表示连通海洋.最后要剩k个湖,总要填掉多 ...

  3. CF #374 (Div. 2) D. 贪心,优先队列或set

    1.CF #374 (Div. 2)   D. Maxim and Array 2.总结:按绝对值最小贪心下去即可 3.题意:对n个数进行+x或-x的k次操作,要使操作之后的n个数乘积最小. (1)优 ...

  4. CF #374 (Div. 2) C. Journey dp

    1.CF #374 (Div. 2)    C.  Journey 2.总结:好题,这一道题,WA,MLE,TLE,RE,各种姿势都来了一遍.. 3.题意:有向无环图,找出第1个点到第n个点的一条路径 ...

  5. CF #371 (Div. 2) C、map标记

    1.CF #371 (Div. 2)   C. Sonya and Queries  map应用,也可用trie 2.总结:一开始直接用数组遍历,果断T了一发 题意:t个数,奇变1,偶变0,然后与问的 ...

  6. CF #365 (Div. 2) D - Mishka and Interesting sum 离线树状数组

    题目链接:CF #365 (Div. 2) D - Mishka and Interesting sum 题意:给出n个数和m个询问,(1 ≤ n, m ≤ 1 000 000) ,问在每个区间里所有 ...

  7. CF #365 (Div. 2) D - Mishka and Interesting sum 离线树状数组(转)

    转载自:http://www.cnblogs.com/icode-girl/p/5744409.html 题目链接:CF #365 (Div. 2) D - Mishka and Interestin ...

  8. CF round 623 Div.1D Tourism 题解

    题目链接:https://codeforces.com/contest/1314/problem/D 大意: \(n\) 个顶点的有向图,顶点编号为 \(1\) 到 \(n\),任意两个不同的顶点 \ ...

  9. CF#138 div 1 A. Bracket Sequence

    [#138 div 1 A. Bracket Sequence] [原题] A. Bracket Sequence time limit per test 2 seconds memory limit ...

随机推荐

  1. C语言博客作业8

    本周作业头 这个作业属于那个课程 C语言程序设计II 这个作业要求在哪里 作业地址 我在这个课程的目标是 熟练运用C语言来写代码 这个作业在那个具体方面帮助我实现目标 while语句的运用 参考文献 ...

  2. HanLP《自然语言处理入门》笔记--2.词典分词

    2. 词典分词 中文分词:指的是将一段文本拆分为一系列单词的过程,这些单词顺序拼接后等于原文本. 中文分词算法大致分为基于词典规则与基于机器学习这两大派. 2.1 什么是词 在基于词典的中文分词中,词 ...

  3. docker启动redis端口映射错误问题解决

    今天使用docker安装redis,使用的时候出现了一些问题.第一次安装好后,在虚拟机后台启动了redis,然后在连接虚拟机的redis的时候怎么也连不上.出现这种情况我第一反应是防火墙没有开启所以我 ...

  4. python day01学习

    1.python语言 # 89年 龟叔2.python的特点 # 优点 : 简明 简单 跨平台性好 # 缺点 : 慢 -执行速度相对其他语言慢 # 编程语言的分类:  # 编译型语言: c c++ j ...

  5. mysql笔记(暂时)

    2018-05-28 create table cms_user(id int key auto_increment,username varchar(20),password varchar(20) ...

  6. JAVA byte数组转化为16进制字符串输出

    最简单的方法: 利用javax.xml.bind包下的DatatypeConverter printHexBinary public static java.lang.String printHexB ...

  7. python 函数(实参与形参、传递参数)

    函数 什么是函数?函数是带名字的代码块,用于完成具体的工作.写出一个函数后,就可以一直调用. 定义函数,函数的基本组成: 1.1 向函数传递参数 向函数中传递任意参数,这样打印出的结果就可以根据自己的 ...

  8. Codeforces_451_B

    http://codeforces.com/problemset/problem/451/B 取前后第一个不满足条件的位置,逆序,判断. #include<cstdio> #include ...

  9. vue项目实战经验汇总

    目录 1.vue框架使用注意事项和经验 1.1 解决Vue动态路由参数变化,页面数据不更新 1.2 vue组件里定时器销毁问题 1.3 vue实现按需加载组件的两种方式 1.4 组件之间,父子组件之间 ...

  10. NR / 5G - MAC Overview