三连否认跪了

T1

开了第一题水题,一遍交过

/* make by ltao */
#include <iostream>
#include <cstdio>
#include <cstring>
#include <stack>
#include <cmath>
#include <algorithm>
#include <queue>
#include <deque>
#include <map>
#include <list>
#include <string>
#include <bits/stdc++.h>
#include <vector>
#include <set>
#include <string>
typedef long long ll;
typedef unsigned long long ull;
typedef double db;
#define sz 666666
#define fake int
#define get() getchar()
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();
    }
    return f?-x:x;
}
char GG(){
    char ch=get();
    while(ch==' '||ch=='\r'||ch=='\n') ch=get();
    return ch;
}
using namespace std;
int t,n,d,ans,a[sz];

int main(){
//  freopen("a.in","r",stdin);
    t=read();
    while(t--){
        n=read();d=read();ans=0;
        for(int i=1;i<=n;i++) a[i]=read();
        ans=a[1];
        for(int i=2;i<=n;i++){
            if(d>=i-1){
                int q=min(d/(i-1),a[i]);
                d-=q*(i-1);
                ans+=q;
            }
            else break;
        }
        printf("%d\n",ans);
    }
    return 0;
}

T2

也是·水题

/* make by ltao */
#include <iostream>
#include <cstdio>
#include <cstring>
#include <stack>
#include <cmath>
#include <algorithm>
#include <queue>
#include <deque>
#include <map>
#include <list>
#include <string>
#include <bits/stdc++.h>
#include <vector>
#include <set>
#include <string>
typedef long long ll;
typedef unsigned long long ull;
typedef double db;
#define sz 666666
#define fake int
#define get() getchar()
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();
    }
    return f?-x:x;
}
char GG(){
    char ch=get();
    while(ch==' '||ch=='\r'||ch=='\n') ch=get();
    return ch;
}
using namespace std;
int t,n,ans,a[sz],x;

int main(){
    t=read();
    while(t--){
        n=read();x=read();int max1=0;bool flag=0;
        for(int i=1;i<=n;i++){
            a[i]=read();
            if(a[i]==x) flag=1;
            max1=max(max1,a[i]);
        }
        if(flag){
            printf("1\n");
            continue;
        }
        else if(max1>x)
            printf("2\n");
        else printf("%d\n",x%max1!=0?x/max1+1:x/max1);
    }
    return 0;
}

T3

我**,md有一个是算术级数的条件。。。。。。

#include <iostream>
using namespace std;

typedef long long ll;
ll arr1[26],arr2[26][26];

int main(){
  string S;
  cin>>S;
  for (int i=0;i<S.length();i++){
    int c=S[i]-'a';
    for (int j=0;j<26;j++)
      arr2[j][c]+=arr1[j];
    //就是说 arr[i][j]
    //表示 i,j 的出现数
    arr1[c]++;
  }
  ll ans=0;
  for (int i=0;i<26;i++)
    ans=max(ans,arr1[i]);
  for (int i=0;i<26;i++)
    for (int j=0;j<26;j++)
      ans=max(ans,arr2[i][j]);
  cout<<ans<<endl;
}

但是值得一提的是,你要讨论size=1或2,因为差不固定

T4

这个题感触颇深,其实刚开始想到了分层图,然后炸了,,,,他只能跑最短的最短路。。

但是,他要你查最长的最短路。。

于是,我们可以跑一个最短路 通过枚举每条边,来做出dis1+disn+1·的最小值

值得一提的是这个排序。很神奇,他做了一个后缀的最大,把\(O(k^2)\)优化成了\(O(k)\)

#include <iostream>
#include <cstdio>
#include <cstring>
#include <queue>
#include <algorithm>
using namespace std;
const int Maxn=2*1e5+111;
int dis1[Maxn],disn[Maxn],n,m,k,a[Maxn],cnt,x,y,h[Maxn];
bool vis[Maxn];
struct Edge{
    int to,lac;
    void insert(int x,int y){
        lac=h[x];
        to=y;
        h[x]=cnt++;
    }
}edge[Maxn*2];
void bfs1(){
    queue<int> q;
    q.push(1);vis[1]=1;dis1[1]=0;
    while(!q.empty()){
        int fr=q.front();q.pop();
        for(int i=h[fr];i!=-1;i=edge[i].lac){
            int to=edge[i].to;
            if(vis[to]) continue;
            dis1[to]=dis1[fr]+1;vis[to]=1;q.push(to);
        }
    }
}
void bfsn(){
    memset(vis,0,sizeof vis);
    queue<int> q;
    q.push(n);vis[n]=1;disn[n]=0;
    while(!q.empty()){
        int fr=q.front();q.pop();
        for(int i=h[fr];i!=-1;i=edge[i].lac){
            int to=edge[i].to;
            if(vis[to]) continue;
            disn[to]=disn[fr]+1;vis[to]=1;q.push(to);
        }
    }
}
bool cmp(int a,int b){
    return dis1[a]-disn[a]<dis1[b]-disn[b];
}

int main(){
    scanf("%d%d%d",&n,&m,&k);
    for(int i=1;i<=k;i++)scanf("%d",&a[i]);
    memset(h,-1,sizeof h);
    for(int i=1;i<=m;i++){
        scanf("%d%d",&x,&y);
        edge[cnt].insert(x,y);
        edge[cnt].insert(y,x);
    }
    bfs1();
    bfsn();
    sort(a+1,a+1+k,cmp);
    int max1=-1e7,best=0;;
    for(int i=k;i>=1;i--){
        best=max(best,max1+dis1[a[i]]);
        max1=max(max1,disn[a[i]]);
    }
    printf("%d",min(best+1,dis1[n]));
    return 0;
}

然后最后有特判。。。

CF #621 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#138 div 1 A. Bracket Sequence

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

  9. CF 552(div 3) E Two Teams 线段树,模拟链表

    题目链接:http://codeforces.com/contest/1154/problem/E 题意:两个人轮流取最大值与旁边k个数,问最后这所有的数分别被谁给取走了 分析:看这道题一点思路都没有 ...

随机推荐

  1. React脚手架解决不能使用less问题

    引言 学编程,还是多敲代码呀,React脚手架不支持less,因此需要配置webpack的webpack.config.js文件 释放配置文件 我们在使用React脚手架的时候,发现发现是没有webp ...

  2. vue的v-if和v-show的区别

    引言 vue这两条指令,在面试vue经常会被问道它们的区别,今天我也好好查看了以下文档,做做笔记. 相同点 它们都用于条件渲染,都可以隐藏和显示DOM元素. v-if 通过判断条件成立与否,适当的销毁 ...

  3. JAVA环境配置(Windows10)

    Java开发环境配置 下载JDK 首先我们需要下载java开发工具包JDK,下载地址:https://www.oracle.com/technetwork/java/javase/downloads/ ...

  4. 2019全国大学生信息安全大赛两道web

    简单小结 菜鸟第一次打国赛,这次题目质量很高,学到了许多姿势. Web Justsoso 打开题目,源代码出存在提示: 使用LFI读取index.php与hint.php http://d4dc224 ...

  5. java中list的sort()功能如何使用?

    排序时正序/倒序处理起来可能会混淆,可以用更简单的方法.可以使用java.util自带的比较器来做 Comparator.comparingInt(Integer::intValue).reverse ...

  6. tomcat 访问权限设置

    1.全局设置,设置允许某些IP能够访问到tomcat服务器,或不能访问tomcat服务器 只需要编辑tomcat的server.xml,增加适当代码即可. 修改如下:在<Host>  &l ...

  7. django后台处理前端上传和显示图片

      1:项目根目录存放图片的目录 2:settings.py  添加 MEDIA_ROOT = os.path.join(BASE_DIR, "media") 3:url.py 添 ...

  8. 常用命令 find chmod

    find   path   -option   [   -print ]   [ -exec   -ok   command ]   {} \; find  [指定查找目录]  [查找规则]  [查找 ...

  9. [Linux-CentOS7]yum清华源CentOS7

    shell直接运行 cat > 01.yumrepo.sh << 'EOF' # 创建备份路径 mkdir -p /etc/yum.repos.d/repo.bak/ # 备份源 m ...

  10. NOIP幂次方

    #include<stdio.h> ] = { ,,,,,,,,,,,,,,, };//由题意n最大为20000,所以最多会用到2的14次方 //为了防止mid+1出错,故写到15次方 i ...