题目

传送门:QWQ

A:Codehorses T-shirts

题意:

给定一些字符串表示去年和今年的衣服型号大小( XL XXL M...... ),要求用最少的次数把去年的衣服大小改成今年需要的。每次改动只能更改字符,不能增添字符。

分析:

把今年和去年的型号字典序排一下。然后用挨个对上(因为题目保证合法,所以长度一样的数量必定相等)。在字符串长度是1的时候要暴力匹配一下,因为长度为1时有L S M三种东西。

代码:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int maxn=;
  4. string a[maxn], b[maxn], q1[maxn], q2[maxn];
  5. int vis[maxn];
  6. int main(){
  7. int n; scanf("%d",&n);
  8. for(int i=;i<=n;i++) cin>>a[i];
  9. for(int i=;i<=n;i++) cin>>b[i];
  10. sort(a+,a++n);sort(b+,b++n);
  11. int ans=;
  12. for(int i=;i<=n;i++){
  13. if(a[i].length()==) continue;
  14. for(int j=;j<a[i].length();j++)
  15. {
  16. if(a[i][j]!=b[i][j]) ans++;
  17. }
  18. }
  19. int k=;
  20. for(int i=;i<=n;i++)
  21. for(int j=;j<=n;j++){
  22. if(a[i].length()!=||b[j].length()!=) continue;
  23. if(a[i]==b[j] && vis[j]==) {
  24. vis[j]=; k--; break;
  25. }
  26. }
  27. for(int i=;i<=n;i++) if(a[i].length()==) k++;
  28. printf("%d\n",ans+k);
  29. return ;
  30. }

B:Light It Up

 

题意:

给定一个$ 10^18 $ 次方的数轴,在数轴上有一些点表示时间。其中有端点0和M。随着时间的推移,每到一个时间点就改变等的状态。

你可以新插入一个点(或者不插),求插入后总的灯亮的时间。

分析:

显然我插的点肯定是在给的点左一个或右一个·。然后前缀和优化模拟一下。

代码:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. typedef long long ll;
  4. const int maxn=;
  5. ll A1[maxn],A2[maxn];
  6. ll M[maxn],maxans;ll sum=;
  7. int main(){
  8. int n;ll m;scanf("%d%I64d",&n,&m);
  9. memset(A1,,sizeof(A1));memset(A2,,sizeof(A2));memset(M,,sizeof(M));
  10. M[]=;M[n+]=m;
  11. for(int i=;i<=n+;i++){
  12. scanf("%I64d",&M[i]);
  13. }
  14. M[n+]=M[n+];
  15. for(int i=;i<=n+;i+=){
  16. A1[i-]=A1[i-];
  17. A1[i]+=A1[i-]+M[i+]-M[i];
  18. }A1[n+]=A1[n+];
  19. for(int i=;i<=n+;i+=){
  20. A2[i-]=A2[i-];
  21. A2[i]+=A2[i-]+M[i+]-M[i];
  22. }
  23. A2[n+]=A2[n+];
  24. for(int i=;i<=n+;i++){
  25. ll ma1,ma2;
  26. if(i%== && M[i]!=M[i-]+){
  27. ma1=A1[i-]-+(A2[n+]-A2[i-]);
  28. ma2=A1[i]-+(A2[n+]-A2[i-]);
  29. }
  30. else if(M[i]!=M[i+]-){
  31. ma1=A1[i-]-+(A2[n+]-A2[i-]);
  32. ma2=A1[i]-+(A2[n+]-A2[i-]);
  33. }
  34. if(i!=) maxans=max(maxans,max(ma1,ma2));
  35. else maxans=ma2;
  36. }
  37. printf("%I64d\n",max(A1[n+],maxans));
  38. return ;
  39. }

C:Covered Points Count

 

题意:

线段覆盖数轴相关

分析:

大力算一下,如果是左端点就ans++,否则ans--

代码:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. typedef long long ll;
  4. const int maxn=;
  5. ll sum[maxn];
  6. struct Node{
  7. ll a;int type;
  8. bool operator < (const Node& b) const{return a<b.a;}
  9. }A[maxn];
  10. int main(){
  11. int n,cnt=;scanf("%d",&n);
  12. ll l,r;
  13. for(int i=;i<=n;i++){
  14. scanf("%I64d%I64d",&l,&r);
  15. A[++cnt].a=l; A[cnt].type=; A[++cnt].a=r+; A[cnt].type=-;
  16. }
  17. sort(A+,A++cnt);
  18. A[].a=A[].a;
  19. int ans=,preans=;
  20. for(int i=;i<=cnt;i++){
  21. preans=ans; ans+=A[i].type;
  22. sum[preans]+=A[i].a-A[i-].a;
  23. }
  24. for(int i=;i<=n;i++){
  25. printf("%I64d ",sum[i]);
  26. }
  27. return ;
  28. }
  29. /*
  30. 5
  31. 10000000000 20000000000
  32. 10 100000000000000000
  33. 10 100000000000000000
  34. 10 100000000000000000
  35. 10 100000000000000000
  36. */

D:Yet Another Problem On a Subsequence

 

题意:

如果一个数组$ a_1.......a_k $ 且 $ a_1 = k-1$,辣么这个数组就是好数组。

一个好序列由好序列和(或)好数组组成。

给出一序列,求他有多少子序列是好序列。

分析:

很显然想到组合数计数一下,但不好处理子序列这个问题。

用$ dp[i] $表示以i开头的好序列的数量

然后对于每个$ a[i] $更新$ dp $

代码:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. typedef long long ll;
  4. const int maxn=2000l;const ll MOD=;
  5. ll C[maxn][maxn], a[maxn], dp[maxn];
  6. int main(){
  7. int n;scanf("%d",&n);
  8. for(int i=;i<=n;i++) scanf("%I64d",&a[i]);
  9.  
  10. for(int i=;i<=n+;i++)
  11. for(int j=;j<=n+;j++){
  12. if(j==) C[i][j]=i;
  13. else C[i][j]=(C[i-][j]+C[i-][j-])%MOD;
  14. }
  15.  
  16. dp[n+]=;
  17. for(int i=n-;i>=;i--){
  18. if(a[i]<= || a[i]+i>n) continue;
  19. for(int j=i+a[i]+;j<=n+;j++){
  20. dp[i]=(dp[i]+C[j-i-][a[i]]*dp[j])%MOD;
  21. }
  22. }
  23.  
  24. ll ans=;
  25. for(int i=;i<=n;i++){
  26. ans=(ans+dp[i])%MOD;
  27. }
  28. printf("%I64d\n",ans);
  29. return ;
  30. }

E:We Need More Bosses

 

题意:

求一张图桥最多的路径上桥的数量

分析:

缩点后求树的直径

代码:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int maxn=;
  4. struct Edge{ int u,v; };
  5. vector<Edge> edges; vector<int> G[maxn], g[maxn];
  6. int n, m ;
  7. void Addedge(int a,int b){
  8. edges.push_back((Edge){a,b}); edges.push_back((Edge){b,a});
  9. int m=edges.size(); G[a].push_back(m-);G[b].push_back(m-);
  10. }
  11. int dfs_clock, low[maxn], pre[maxn], q[maxn], fron, scc_cnt, scc[maxn];
  12. int dfs(int u,int fa){
  13. int lowu=pre[u]=++dfs_clock;
  14. q[++fron]=u;
  15. for(int i=;i<G[u].size();i++){
  16. int v=edges[G[u][i]].v, lowv;
  17. if(u==fa) continue;
  18. if(!pre[v]){
  19. lowv=dfs(v,u); lowu=min(lowu,lowv);
  20. // if(lowv>=pre[u]){ ok[G[u][i]]=1; ok[G[u][i]^1]=1;}
  21. }
  22. else{
  23. if(pre[v]<pre[u] && v!=fa) lowu=min(lowu,pre[v]);
  24. }
  25. }
  26. low[u]=lowu;
  27. if(pre[u]==low[u]){
  28. scc_cnt++;
  29. for(;;){
  30. int x=q[fron--]; scc[x]=scc_cnt;
  31. if(x==u) break;
  32. }
  33. }
  34. return lowu;
  35. }
  36. queue<int> que;
  37. int dis[maxn], inq[maxn];
  38. void dist(int x,int f){
  39. dis[x]=dis[f]+;
  40. for(int i=;i<g[x].size();i++){
  41.  
  42. int v=g[x][i]; if(v==f) continue;//printf("============ %d\n",v);
  43. dist(v,x);
  44. }
  45. }
  46. int main(){
  47. scanf("%d%d",&n,&m);
  48. int x,y;
  49. for(int i=;i<=m;i++){
  50. scanf("%d%d",&x,&y); Addedge(x,y);
  51. }
  52. dfs(,-);
  53. for(int i=;i<edges.size();i++){
  54. Edge e=edges[i];
  55. // printf("--------- %d %d\n",scc[e.u],scc[e.v]);
  56. if(scc[e.u]!=scc[e.v]) g[scc[e.u]].push_back(scc[e.v]);
  57. }
  58. dist(,);int mx=,mp=;
  59. for(int i=;i<=scc_cnt;i++){
  60. if(dis[i]>mx) mx=dis[i],mp=i;
  61. }
  62. memset(dis,,sizeof(dis));
  63. dist(mp,); mx=;
  64. for(int i=;i<=scc_cnt;i++) mx=max(mx,dis[i]);
  65. printf("%d\n",mx-);
  66. return ;
  67. }

【Codeforces】Educational Codeforces Round 46(Contest 1000)的更多相关文章

  1. 【SPOJ】Longest Common Substring II (后缀自动机)

    [SPOJ]Longest Common Substring II (后缀自动机) 题面 Vjudge 题意:求若干个串的最长公共子串 题解 对于某一个串构建\(SAM\) 每个串依次进行匹配 同时记 ...

  2. 【BZOJ1717】产奶的模式(后缀数组)

    [BZOJ1717]产奶的模式(后缀数组) 题面 权限题 hihocoder 洛谷 题解 \(hihocoder\)里面讲的非常好了 这题要求的就是最长可重叠重复K次子串 所谓相同的子串 我们可以理解 ...

  3. 【BZOJ2154】Crash的数字表格(莫比乌斯反演)

    [BZOJ2154]Crash的数字表格(莫比乌斯反演) 题面 BZOJ 简化题意: 给定\(n,m\) 求\[\sum_{i=1}^n\sum_{j=1}^mlcm(i,j)\] 题解 以下的一切都 ...

  4. 【BZOJ2588】Count On a Tree(主席树)

    [BZOJ2588]Count On a Tree(主席树) 题面 题目描述 给定一棵N个节点的树,每个点有一个权值,对于M个询问(u,v,k),你需要回答u xor lastans和v这两个节点间第 ...

  5. 【BZOJ3436】小K的农场(差分约束)

    [BZOJ3436]小K的农场(差分约束) 题面 由于BZOJ巨慢无比,使用洛谷美滋滋 题解 傻逼差分约束题, 您要是不知道什么是差分约束 您就可以按下\(Ctrl+W\)了 #include< ...

  6. 【Luogu3732】[HAOI2017]供给侧改革(Trie树)

    [Luogu3732][HAOI2017]供给侧改革(Trie树) 题面 洛谷 给定一个纯随机的\(01\)串,每次询问\([L,R]\)之间所有后缀两两之间的\(LCP\)的最大值. 题解 一个暴力 ...

  7. 【BZOJ5339】[TJOI2018]教科书般的亵渎(斯特林数)

    [BZOJ5339][TJOI2018]教科书般的亵渎(斯特林数) 题面 BZOJ 洛谷 题解 显然交亵渎的次数是\(m+1\). 那么这题的本质就是让你求\(\sum_{i=1}^n i^{m+1} ...

  8. 【BZOJ1814】Ural 1519 Formula 1 (插头dp)

    [BZOJ1814]Ural 1519 Formula 1 (插头dp) 题面 BZOJ Vjudge 题解 戳这里 上面那个链接里面写的非常好啦. 然后说几个点吧. 首先是关于为什么只需要考虑三进制 ...

  9. 【BZOJ1880】[Sdoi2009]Elaxia的路线(最短路)

    [BZOJ1880][Sdoi2009]Elaxia的路线(最短路) 题面 BZOJ 洛谷 题解 假装我们知道了任意两点间的最短路,那么我们怎么求解答案呢? 不难发现公共路径一定是一段连续的路径(如果 ...

随机推荐

  1. 安装lua 环境

    lua下载地址:https://www.lua.org/download.html curl -R -O http://www.lua.org/ftp/lua-5.3.5.tar.gz tar zxf ...

  2. AI病毒来袭,拿什么拯救你我的电脑?

    文|雷宇 来源|智能相对论(aixdlun) 在刘慈欣的科幻小说<中国2185>中,除领土,领海,领空外,还有一个被称为电子领土的地方,这个地方除了容易受常规武器破坏外,还容易受到软件武器 ...

  3. 用pycharm提交代码,冲突之后文件丢失找回方法

    1: 更新代码时, 监测到本地代码改变,需要和合并,重启之后才可以, 选择No同时,代码会被冲掉,新增加的文件也会被冲掉, 但是pycharm有一个文件历史记忆,找到之后可以找到丢失的文件. 1: 选 ...

  4. IOS-工程师Mac上的必备软件

      前言   iOS工程师一直都是那么的高逼格,用的是Mac电脑,耍的是iPhone手机,哇咔咔~~  但是,作为一名iOS开发工程师,我们除了高逼格外,还必须是全能的.你不会点UI设计.不会点后台语 ...

  5. iptables Configuration

    iptables usage: Add Rules: iptables -I INPUT -p tcp --dport -j ACCEPT iptables -I INPUT -p tcp --dpo ...

  6. python-基础-时间日期处理小结(datetime模块)

    在写代码的时候,总是会遇到各式各样关于时间的处理和要求.总结一下: 首先,本文是关于datetime模块的各种总结. 开始. 一.datetime基本操作 1.获取当前datetime time = ...

  7. -webkit新属性 image-set和srcset

    响应式图片的作用: 为使用不同分辨率的不同浏览器用户提供适合其浏览环境的图片大小的解决方案. 之前的解决方法是使用@media 但是-webkit新提出的image-set和srcset同样可以解决问 ...

  8. linux提权辅助工具(三):privchecker.py

    来自:https://www.securitysift.com/download/linuxprivchecker.py #!/usr/env python ##################### ...

  9. L202

    Yuan Cao’s teenage years were hardly typical. By age 18, he had already graduated from high school, ...

  10. js在一定时间内跳转页面及各种页面刷新

    1.js 代码: <SCRIPT LANGUAGE="JavaScript"> var time = 5; //时间,秒 var timelong = 0; funct ...