这次比赛(2018年第二届河北省大学生程序设计竞赛)虽然没有打,但是题目还是要写的。未完成的题目(还差比较硬核的四题)和思路分析会陆续更新完。

Problem A 2011 Mex Query

/*
* Operation China Wall
* Author: Zuiho
* Date: 2018-05
* Problem: 2011-Mex Query
*/
#include <bits/stdc++.h>
#define MP make_pair
#define PB push_back
#define fi first
#define se second
#define rep(i,a,b) for(int i=(a);i<=(b);++i)
#define QUICKIO ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
using namespace std;
using ll=long long;
using ull=unsigned long long; int main()
{
QUICKIO unordered_map<int,int> m;
int n,T; cin>>T;
bool firstLine=true;
while(T--)
{
//if(firstLine) firstLine=false;
//else cout<<endl;
cin>>n; m.clear();
int maxm=0;
rep(i,1,n)
{
int tmp; cin>>tmp;
m[tmp]++;
maxm=max(maxm,tmp);
}
rep(i,0,maxm)
{
if(m[i]==0)
{
cout<<i<<endl; break;
}
}
}
return 0;
}

Problem B 2012 icebound的商店

/*
* Operation China Wall
* Author: Zuiho
* Date: 2018-05
* Problem: 2012-Icebound's Shops
* Tips: A Simple DP.
*/
#include <bits/stdc++.h>
#define MP make_pair
#define PB push_back
#define fi first
#define se second
#define rep(i,a,b) for(int i=(a);i<=(b);++i) using namespace std;
using ll=long long;
using ull=unsigned long long;
const int mod=1000000009;
ll dp[20][3005];
int w[20]={0,1,2};
/*
dp[i][j]=dp[1~i][j-w[1~i]]
*/
ll solve(int x,int y)
{
if(dp[x][y]!=-1)
return dp[x][y];
else
{
//cout<<"?"<<endl;
if(y==0) return dp[x][y]=1;
ll ans=0;
rep(i,1,x)
{
//printf("%d,%d\n",y,w[i]);
if(y-w[i]>=0)
ans=(ans+solve(i,y-w[i]))%mod;
else break;
//else if(y==w[i]) ans=(ans+solve(i,y-w[i])+1)%mod;
}
//printf("dp[%d][%d]=%lld\n",x,y,ans%mod);
return dp[x][y]=ans%mod;
}
}
int main()
{
int T; cin>>T;
memset(dp,-1,sizeof(dp));
rep(i,3,15) w[i]=w[i-1]+w[i-2];
while(T--)
{
int x; cin>>x;
if(T>0)
cout<<solve(15,x)<<endl;
else cout<<solve(15,x);
//rep(i,1,x) cout<<dp[i]<<" "; cout<<endl;
}
return 0;
}

Problem C 2013 Nim Game

/*
* Operation China Wall
* Author: Zuiho
* Date: 2018-05
* Problem: 2013-Nim Game
* Notice: The code finishes after my reading the answer.
* Tips: A Simple Nim Game. Remember a xor b xor b = a,
* And everything turns out to be okay.
*/
#include <bits/stdc++.h>
#define MP make_pair
#define PB push_back
#define fi first
#define se second
#define rep(i,a,b) for(int i=(a);i<=(b);++i)
#define QUICKIO \
ios::sync_with_stdio(false); \
cin.tie(0); \
cout.tie(0);
using namespace std;
using ll=long long;
using ull=unsigned long long;
ll s[1000005];
int main()
{
QUICKIO
int T; cin>>T;
while(T--)
{
int n,m; cin>>n>>m;
s[0]=0;
rep(i,1,n)
{
ll tmp; cin>>tmp;
s[i]=s[i-1]^tmp;
}
ll ans=0,mod=1e9+7;
rep(i,1,m)
{
int l,r; cin>>l>>r;
ans=(ans*2+((s[r]^s[l-1])>0))%mod;
}
cout<<ans<<endl;
}
return 0;
}

Problem D 2014 Defending Plan Support

未完成,待做。

Problem E 2015 Bitmap

未完成,待做。

Problem F 2016 神殿

/*
* Operation China Wall
* Author: Zuiho
* Date: 2018-05
* Problem: 2016-Temple
* Tips: It's a problem about implementation and greedy. ;)
*/
#include <bits/stdc++.h>
#define MP make_pair
#define PB push_back
#define fi first
#define se second
#define rep(i,a,b) for(int i=(a);i<=(b);++i) using namespace std;
using ll=long long;
using ull=unsigned long long;
int main()
{
ll l,r;
bool firstLine=true;
while(cin>>l>>r)
{
if(firstLine) firstLine=false;
else cout<<endl;
ll ans=l; int pos=-1;
while(++pos<=32)
{
if(((ans>>(pos))&1)==0)
{
if(ans+(ll(1)<<pos)<=r)
ans+=(1<<pos);
}
}
cout<<ans;
}
return 0;
}

Problem G 2017 K Multiple Longest Commom Subsequence

应为Common。

/*
* Operation China Wall
* Author: Zuiho
* Date: 2018-05
* Problem: 2017-K Multiple Longest Commom Subsequence
* Notice: The code finishes after my reading the answer.
* Tips: It's adapted from the classical dp problem. However,
* its rescriction makes it more interesting and difficult. ;)
* * *
* Okay, Let's think about the meaning of K Multiple Longest
* 'Commom'. That means we need to build a com-sub (I make this
* abbreviation of common subsequence) based on the same substring.
* Oh f@ck, see the self-documented code! ;)
*/
#include <bits/stdc++.h>
#define MP make_pair
#define PB push_back
#define fi first
#define se second
#define ZERO(x) memset((x),0,sizeof(x))
#define rep(i,a,b) for(int i=(a);i<=(b);++i)
#define QUICKIO ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
using namespace std;
using ll=long long;
using ull=unsigned long long;
using pi=pair<int,int>;
using pii=pair<pi,int>;
int k,n,m,dp[1005][1005];
int a[1005],b[1005];
int pa[1005],pb[1005];
int main()
{
QUICKIO
int T; cin>>T;
while(T--)
{
cin>>k>>n>>m;
ZERO(dp);
memset(pa,0,sizeof(pa));
memset(pb,0,sizeof(pb));
rep(i,1,n) cin>>a[i];
rep(i,1,m) cin>>b[i];
queue<int> q[1005];
rep(i,1,n)
{
q[a[i]].push(i);
if(q[a[i]].size()==k)
{
pa[i]=q[a[i]].front();
q[a[i]].pop();
}
}
rep(i,1,n) while(!q[i].empty()) q[i].pop();
rep(i,1,m)
{
q[b[i]].push(i);
if(q[b[i]].size()==k)
{
pb[i]=q[b[i]].front();
q[b[i]].pop();
}
else if(q[b[i]].size()==1) pb[i]=0;
}
rep(i,1,n)
rep(j,1,m)
{
int ans=max(dp[i-1][j],dp[i][j-1]);
if(a[i]==b[j] && pa[i]!=0 && pb[j]!=0)
ans=max(ans,dp[pa[i]-1][pb[j]-1]+k);
dp[i][j]=max(dp[i][j],ans);
}
cout<<dp[n][m]<<endl;
}
return 0;
}

Problem H 2018 跑图

/*
* Operation China Wall
* Author: Zuiho
* Date: 2018-05
* Problem: 2018-Running out of poisonous areas
* Tips: The origin algorithm is not fast enough.
* A BFS is better choice.
*/
#include <bits/stdc++.h>
#define MP make_pair
#define PB push_back
#define fi first
#define se second
#define ZERO(x) memset((x),0,sizeof(x))
#define rep(i,a,b) for(int i=(a);i<=(b);++i)
#define QUICKIO ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
using namespace std;
using ll=long long;
using ull=unsigned long long;
using pi=pair<int,int>;
using pii=pair<pi,int>;
bool matrix[505][505];
int dist[505][505];
bool vis[505][505];
int dx[]={0,1,0,-1},
dy[]={1,0,-1,0};
int main()
{
QUICKIO int n,m;
//bool firstLine=true;
while(cin>>n>>m)
{
///if(firstLine) firstLine=false;
//else cout<<endl;
ZERO(matrix);
ZERO(dist);
ZERO(vis);
queue<pii> q;
rep(i,1,n)
rep(j,1,m)
{
cin>>matrix[i][j];
if(matrix[i][j])
{
q.push(MP(MP(i,j),0));
dist[i][j]=0;
vis[i][j]=true;
} }
while(!q.empty())
{
auto now=q.front(); q.pop();
rep(i,0,3)
{
int tx=now.fi.fi+dx[i],
ty=now.fi.se+dy[i];
if(tx>=1 && tx<=n && ty>=1 && ty<=m && !vis[tx][ty])
{
vis[tx][ty]=true;
dist[tx][ty]=now.se+1;
q.push(MP(MP(tx,ty),now.se+1));
}
}
}
rep(i,1,n)
rep(j,1,m)
{
if(j==m)
cout<<dist[i][j]<<endl;
else cout<<dist[i][j]<<" ";
}
}
return 0;
}

Problem I 2019 Power Seq

未完成。待做。

Problem J 2020 Beautiful Array

未完成。待做。

Problem K 2021 520

/*
* Operation China Wall
* Author: Zuiho
* Date: 2018-05
* Problem: 2021-520
*/
#include <bits/stdc++.h>
#define MP make_pair
#define PB push_back
#define fi first
#define se second
#define rep(i,a,b) for(int i=(a);i<=(b);++i) using namespace std;
using ll=long long;
using ull=unsigned long long;
ll quick_mod(ll a, ll b, ll n)
{
if(b==0) return 1%n;
else if(b==1) return a%n;
else
{
int tmp=quick_mod(a,b/2,n);
return ((((tmp%n)*tmp)%n)*quick_mod(a,b%2,n))%n;
}
}
int main()
{
ll n; cin>>n;
cout<<quick_mod(2,n,20180520);
return 0;
}

Problem L 2022 icebound的账单

/*
* Operation China Wall
* Author: Zuiho
* Date: 2018-05
* Problem: 2022-icebound's bill
*/
#include <bits/stdc++.h>
#define MP make_pair
#define PB push_back
#define fi first
#define se second
#define rep(i,a,b) for(int i=(a);i<=(b);++i) using namespace std;
using ll=long long;
using ull=unsigned long long; int main()
{
ll n; cin>>n;
ll sum=0;
rep(i,1,n)
{
int tmp; cin>>tmp;
sum+=tmp;
}
if(sum>0) cout<<"icebound is happy.";
else if(sum==0) cout<<"icebound is ok.";
else cout<<"icebound is sad.";
return 0;
}

ps:估计下一届的难度不会这么easy了2333
单机车七题还是难度不足的,不过也是考虑到广大兄弟院校了。

「赛后补题」HBCPC2018题目代码与思路简析的更多相关文章

  1. 「赛后补题」Meeting(HDU-5521)

    题意 A,B两个人分别在1和n区.每个区有若干点(区之间的点可以重复,各个区内点间的距离一致),给出区之间有联系的图以及到达所需时间.求两个人见面最短时间以及在哪个区碰面(可有多个) 分析 隐式图搜索 ...

  2. 2018 HDU多校第三场赛后补题

    2018 HDU多校第三场赛后补题 从易到难来写吧,其中题意有些直接摘了Claris的,数据范围是就不标了. 如果需要可以去hdu题库里找.题号是6319 - 6331. L. Visual Cube ...

  3. LibreOJ #6014. 「网络流 24 题」最长 k 可重区间集

    #6014. 「网络流 24 题」最长 k 可重区间集 内存限制:256 MiB时间限制:1000 ms标准输入输出 题目类型:传统评测方式:文本比较 上传者: 匿名 提交提交记录统计讨论测试数据   ...

  4. LibreOJ #6013. 「网络流 24 题」负载平衡 最小费用最大流 供应平衡问题

    #6013. 「网络流 24 题」负载平衡 内存限制:256 MiB时间限制:1000 ms标准输入输出 题目类型:传统评测方式:文本比较 上传者: 匿名 提交提交记录统计讨论测试数据   题目描述 ...

  5. LIbreOJ #6011. 「网络流 24 题」运输问题 最小费用最大流

    #6011. 「网络流 24 题」运输问题 内存限制:256 MiB时间限制:1000 ms标准输入输出 题目类型:传统评测方式:文本比较 上传者: 匿名 提交提交记录统计讨论测试数据   题目描述 ...

  6. LibreOJ #6008. 「网络流 24 题」餐巾计划 最小费用最大流 建图

    #6008. 「网络流 24 题」餐巾计划 内存限制:256 MiB时间限制:1000 ms标准输入输出 题目类型:传统评测方式:文本比较 上传者: 匿名 提交提交记录统计讨论测试数据   题目描述 ...

  7. LibreOJ 6004. 「网络流 24 题」圆桌聚餐 网络流版子题

    #6004. 「网络流 24 题」圆桌聚餐 内存限制:256 MiB时间限制:5000 ms标准输入输出 题目类型:传统评测方式:Special Judge 上传者: 匿名 提交提交记录统计讨论测试数 ...

  8. LibreOJ 6003. 「网络流 24 题」魔术球 贪心或者最小路径覆盖

    6003. 「网络流 24 题」魔术球 内存限制:256 MiB时间限制:1000 ms标准输入输出 题目类型:传统评测方式:Special Judge 上传者: 匿名 提交提交记录统计讨论测试数据 ...

  9. LibreOJ #6002. 「网络流 24 题」最小路径覆盖

    #6002. 「网络流 24 题」最小路径覆盖 内存限制:256 MiB时间限制:1000 ms标准输入输出 题目类型:传统评测方式:Special Judge 上传者: 匿名 提交提交记录统计讨论测 ...

随机推荐

  1. 【转】onConfigurationChanged

    http://blog.csdn.net/xiaodongvtion/article/details/679938 转载自该文章. 注意:onConfigurationChanged事件并不是只有屏幕 ...

  2. 项目Alpha冲刺(团队7/10)

    项目Alpha冲刺(团队7/10) 团队名称: 云打印 作业要求: 项目Alpha冲刺(团队) 作业目标: 完成项目Alpha版本 团队队员 队员学号 队员姓名 个人博客地址 备注 221600412 ...

  3. caffe的卷积层的乘积运算的优化

    https://hal.inria.fr/file/index/docid/112631/filename/p1038112283956.pdf caffe的卷积计算的优化来自这篇paper,实际上就 ...

  4. ThreadLocal 例子

    /** * 一个ThreadLocal代表一个变量,故其中里只能放一个数据,有两个变量都要线程内共享,则要定义两个ThreadLocal. */ public class ThreadLocalTes ...

  5. PHP处理数组和XML之间的互相转换

    PHP将数组转换成XML PHP可以将数组转换成xml格式,简单的办法是遍历数组,然后将数组的key/value转换成xml节点,再直接echo输出了,如: function arrayToXml($ ...

  6. 【luogu P1462 通往奥格瑞玛的道路】 题解

    题目链接:https://www.luogu.org/problemnew/show/P1462 记住HP=0也叫死. #include <queue> #include <cstd ...

  7. Spring8中lambda表达式的学习(Function接口、BiFunction接口、Consumer接口)

    代码重构,为了确保功能的等效性,梳理代码时,发现如下代码: public SingleRespTTO fundI(SingleReqTTO request) throws Exception { re ...

  8. [HNOI2003]操作系统(优先队列,堆排序)

    题目描述 写一个程序来模拟操作系统的进程调度.假设该系统只有一个CPU,每一个进程的到达时间,执行时间和运行优先级都是已知的.其中运行优先级用自然数表示,数字越大,则优先级越高. 如果一个进程到达的时 ...

  9. ABAP术语-Database Rollback

    Database Rollback 原文:http://www.cnblogs.com/qiangsheng/archive/2008/01/24/1051238.html Operation tha ...

  10. PG进程结构和内存结构

    ​ 本文主要介绍PostgreSQL数据库(后文简称PG)进程结构和内存结构,物理结构将在后续继续整理分享. ​ 上图描述了PG进程结构.内存结构和部分物理结构的内容.图中的内容包含了两个部分: PG ...