ARC070

C - Go Home

题目大意:一只袋鼠第i秒可以向左或向右跳i步或者不跳,问从0跳到x的最小时间

就是1,2,3,4...k总和超过x的最小的k,因为如果超过了x的那部分需要减掉的那步我不跳即可

#include <bits/stdc++.h>
#define fi first
#define se second
#define pii pair<int,int>
#define mp make_pair
#define pb push_back
#define space putchar(' ')
#define enter putchar('\n')
#define eps 1e-10
#define MAXN 200005
//#define ivorysi
using namespace std;
typedef long long int64;
typedef unsigned int u32;
typedef double db;
template<class T>
void read(T &res) {
res = 0;T f = 1;char c = getchar();
while(c < '0' || c > '9') {
if(c == '-') f = -1;
c = getchar();
}
while(c >= '0' && c <= '9') {
res = res * 10 +c - '0';
c = getchar();
}
res *= f;
}
template<class T>
void out(T x) {
if(x < 0) {x = -x;putchar('-');}
if(x >= 10) {
out(x / 10);
}
putchar('0' + x % 10);
}
int X; void Solve() {
read(X);
int r = 0;
for(int i = 1 ; i <= 100000 ; ++i) {
r += i;
if(r >= X) {
out(i);enter;return;
}
}
}
int main() {
#ifdef ivorysi
freopen("f1.in","r",stdin);
#endif
Solve();
}

D - No Need

大意:若一个数在任意总和大于等于K的子集内被删掉后,该子集的和仍然大于等于K,认为这个数不必要,求不必要的数的个数

发现如果小于这个数的某值是必要的,这个数也一定是必要的,我们做一个背包,如果存在一个值小于K加上这个数是大于等于K的,那么这个数就是必要的,比最小的必要的数还要小的数都是不必要的

#include <bits/stdc++.h>
#define fi first
#define se second
#define pii pair<int,int>
#define mp make_pair
#define pb push_back
#define space putchar(' ')
#define enter putchar('\n')
#define eps 1e-10
#define MAXN 200005
//#define ivorysi
using namespace std;
typedef long long int64;
typedef unsigned int u32;
typedef double db;
template<class T>
void read(T &res) {
res = 0;T f = 1;char c = getchar();
while(c < '0' || c > '9') {
if(c == '-') f = -1;
c = getchar();
}
while(c >= '0' && c <= '9') {
res = res * 10 +c - '0';
c = getchar();
}
res *= f;
}
template<class T>
void out(T x) {
if(x < 0) {x = -x;putchar('-');}
if(x >= 10) {
out(x / 10);
}
putchar('0' + x % 10);
}
int N,K,f[MAXN];
int a[MAXN];
void Solve() {
read(N);read(K);
for(int i = 1 ; i <= N ; ++i) {
read(a[i]);
}
sort(a + 1,a + N + 1);
f[0] = 1;
int ans = N;
for(int i = N ; i >= 1 ; --i) {
for(int j = K - 1 ; j >= 0 ; --j) {
if(f[j] && a[i] + j >= K) ans = min(i - 1,ans);
if(j >= a[i]) f[j] |= f[j - a[i]];
}
}
out(ans);enter;
}
int main() {
#ifdef ivorysi
freopen("f1.in","r",stdin);
#endif
Solve();
}

E - NarrowRectangles

大意:每段长度为1的纵坐标有一个线段,初始坐标\(l[i],r[i]\),线段可以移动,要求相邻两个线段之间有交集,可以在端点,求最小移动距离和

设\(dp[i][x]\)是第i条线段左边的点在x的最小花费,这个函数是一个凹(数学老师读音:wa)函数,每个拐点斜率单调递增1,最左的斜率是-i - 1

每次相当于一个绝对值函数累加上,上一次的函数变成,左边i个点向左移动\(r[i] - l[i]\),右边i个点向右移动\(r[i - 1] - l[i - 1]\)

可以用set维护,然后两个新的拐点都是l[i]

维护函数最小值即可

#include <bits/stdc++.h>
#define fi first
#define se second
#define pii pair<int,int>
#define mp make_pair
#define pb push_back
#define space putchar(' ')
#define enter putchar('\n')
#define eps 1e-10
#define MAXN 200005
//#define ivorysi
using namespace std;
typedef long long int64;
typedef unsigned int u32;
typedef double db;
template<class T>
void read(T &res) {
res = 0;T f = 1;char c = getchar();
while(c < '0' || c > '9') {
if(c == '-') f = -1;
c = getchar();
}
while(c >= '0' && c <= '9') {
res = res * 10 +c - '0';
c = getchar();
}
res *= f;
}
template<class T>
void out(T x) {
if(x < 0) {x = -x;putchar('-');}
if(x >= 10) {
out(x / 10);
}
putchar('0' + x % 10);
}
int N;
int64 l[MAXN],r[MAXN];
multiset<int64> Lb,Rb;
int64 c,d[2];
void Solve() {
read(N);
for(int i = 1 ; i <= N ; ++i) {
read(l[i]);read(r[i]);
}
Lb.insert(l[1]);Rb.insert(l[1]);c = 0;
for(int i = 2 ; i <= N ; ++i) {
d[0] -= r[i] - l[i];d[1] += r[i - 1] - l[i - 1];
int64 a = *(--Lb.end()) + d[0],b = *(Rb.begin()) + d[1];
if(l[i] < a) {
c += abs(a - l[i]);
Lb.erase(Lb.find(a - d[0]));Rb.insert(a - d[1]);
Lb.insert(l[i] - d[0]);Lb.insert(l[i] - d[0]);
}
else if(l[i] > b){
c += abs(b - l[i]);
Rb.erase(Rb.find(b - d[1]));Lb.insert(b - d[0]);
Rb.insert(l[i] - d[1]);Rb.insert(l[i] - d[1]);
}
else {
Lb.insert(l[i] - d[0]);Rb.insert(l[i] - d[1]);
}
}
out(c);enter;
}
int main() {
#ifdef ivorysi
freopen("f1.in","r",stdin);
#endif
Solve();
}

F - HonestOrUnkind

如果\(A <= B\),从B中选A个人装成互相都是诚实的人,那么不可能分辨出来

然后如果\(A > B\),如果有一个p认为q是unkind,那么p和q至少有一个unkind,同时忽略p,q,那么剩下的仍然honest大于unkind

用个栈,问栈顶新加的点是不是unkind,如果是unkind,那么两个一起删除,最后栈顶剩下的点一定是honest,因为栈中至少有一个honest,两两之间回答都是1,一直指向栈顶都是honest

问那个honest的人所有人的身份即可

#include <bits/stdc++.h>
#define fi first
#define se second
#define pii pair<int,int>
#define mp make_pair
#define pb push_back
#define space putchar(' ')
#define enter putchar('\n')
#define eps 1e-10
#define MAXN 200005
//#define ivorysi
using namespace std;
typedef long long int64;
typedef unsigned int u32;
typedef double db;
template<class T>
void read(T &res) {
res = 0;T f = 1;char c = getchar();
while(c < '0' || c > '9') {
if(c == '-') f = -1;
c = getchar();
}
while(c >= '0' && c <= '9') {
res = res * 10 +c - '0';
c = getchar();
}
res *= f;
}
template<class T>
void out(T x) {
if(x < 0) {x = -x;putchar('-');}
if(x >= 10) {
out(x / 10);
}
putchar('0' + x % 10);
}
bool Query(int a,int b) {
putchar('?');space;out(a);space;out(b);enter;
fflush(stdout);
char s[5];
scanf("%s",s + 1);
if(s[1] == 'Y') return 1;
else return 0;
}
int sta[MAXN],top,A,B;
int ans[MAXN];
void Solve() {
read(A);read(B);
if(A <= B) {puts("Impossible");}
else {
for(int i = 0 ; i < A + B ; ++i) {
if(!top) sta[++top] = i;
else {
if(!Query(sta[top],i)) --top;
else sta[++top] = i;
}
}
int h = sta[top]; for(int i = 0 ; i < A + B ; ++i) {
if(Query(h,i)) ans[i] = 1;
else ans[i] = 0;
}
putchar('!');space;
for(int i = 0 ; i < A + B ; ++i) {
out(ans[i]);
}
enter;
}
}
int main() {
#ifdef ivorysi
freopen("f1.in","r",stdin);
#endif
Solve();
}

【AtCoder】ARC070的更多相关文章

  1. 【AtCoder】ARC092 D - Two Sequences

    [题目]AtCoder Regular Contest 092 D - Two Sequences [题意]给定n个数的数组A和数组B,求所有A[i]+B[j]的异或和(1<=i,j<=n ...

  2. 【Atcoder】CODE FESTIVAL 2017 qual A D - Four Coloring

    [题意]给定h,w,d,要求构造矩阵h*w满足任意两个曼哈顿距离为d的点都不同色,染四色. [算法]结论+矩阵变换 [题解] 曼哈顿距离是一个立着的正方形,不方便处理.d=|xi-xj|+|yi-yj ...

  3. 【AtCoder】ARC 081 E - Don't Be a Subsequence

    [题意]给定长度为n(<=2*10^5)的字符串,求最短的字典序最小的非子序列字符串. http://arc081.contest.atcoder.jp/tasks/arc081_c [算法]字 ...

  4. 【AtCoder】AGC022 F - Leftmost Ball 计数DP

    [题目]F - Leftmost Ball [题意]给定n种颜色的球各k个,每次以任意顺序排列所有球并将每种颜色最左端的球染成颜色0,求有多少种不同的颜色排列.n,k<=2000. [算法]计数 ...

  5. 【AtCoder】AGC005 F - Many Easy Problems 排列组合+NTT

    [题目]F - Many Easy Problems [题意]给定n个点的树,定义S为大小为k的点集,则f(S)为最小的包含点集S的连通块大小,求k=1~n时的所有点集f(S)的和取模92484403 ...

  6. 【AtCoder】ARC067 F - Yakiniku Restaurants 单调栈+矩阵差分

    [题目]F - Yakiniku Restaurants [题意]给定n和m,有n个饭店和m张票,给出Ai表示从饭店i到i+1的距离,给出矩阵B(i,j)表示在第i家饭店使用票j的收益,求任选起点和终 ...

  7. 【AtCoder】ARC095 E - Symmetric Grid 模拟

    [题目]E - Symmetric Grid [题意]给定n*m的小写字母矩阵,求是否能通过若干行互换和列互换使得矩阵中心对称.n,m<=12. [算法]模拟 [题解]首先行列操作独立,如果已确 ...

  8. 【Atcoder】AGC022 C - Remainder Game 搜索

    [题目]C - Remainder Game [题意]给定n个数字的序列A,每次可以选择一个数字k并选择一些数字对k取模,花费2^k的代价.要求最终变成序列B,求最小代价或无解.n<=50,0& ...

  9. 【Atcoder】AGC 020 B - Ice Rink Game 递推

    [题意]n个人进行游戏,每轮只保留最大的a[i]倍数的人,最后一轮过后剩余2人,求最小和最大的n,或-1.n<=10^5. [算法]递推||二分 [题解]令L(i),R(i)表示第i轮过后的最小 ...

随机推荐

  1. leetcode解题报告(3):Search in Rotated Sorted Array

    描述 Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 m ...

  2. kill函数

    kill函数/命令产生信号 kill命令产生信号:kill -SIGKILL pid kill函数:给指定进程发送指定信号(不一定杀死) int kill(pid_t pid, int sig);   ...

  3. codeforces533E

    Correcting Mistakes CodeForces - 533E Analyzing the mistakes people make while typing search queries ...

  4. Ubuntu 14.04 用户操作

    新建用户sudo adduser linuxidc 修改hosts文件sudo gedit /etc/hosts ubuntu修改主机名sudo gedit /etc/hostname 删除用户在ro ...

  5. CF1217B

    CF1217B 题意: 有一个有 $ x $ 个头的龙,你有 $ n $ 种方案,每种方案中包含你可以砍掉的头 $ d_i $ 和龙会生长的头 $ h_i $ 找到一种方案,使得操作数最少. 解法: ...

  6. abd shell pm list packages

    abd shell pm list packages ####查看当前连接设备或者虚拟机的所有包 adb shell pm list packages -d #####只输出禁用的包. adb she ...

  7. Python 调用系统命令的模块 Subprocess

    Python 调用系统命令的模块 Subprocess 有些时候需要调用系统内部的一些命令,或者给某个应用命令传不定参数时可以使用该模块. 初识 Subprocess 模块 Subprocess 模块 ...

  8. tomcat部署web项目的问题

    1:启动窗口乱码 原因 Tomcat默认都是UTF-8的,但是控制台是GBK的,要保持一致 解决办法 打开tomcat目录下的conf/目录下logging.properties找到java.util ...

  9. SQL-W3School-高级:SQL JOIN

    ylbtech-SQL-W3School-高级:SQL JOIN 1.返回顶部 1. SQL join 用于根据两个或多个表中的列之间的关系,从这些表中查询数据. Join 和 Key 有时为了得到完 ...

  10. 自定义msi安装包的执行过程

    有时候我们需要在程序中执行另一个程序的安装,这就需要我们去自定义msi安装包的执行过程. 比如我要做一个安装管理程序,可以根据用户的选择安装不同的子产品.当用户选择了三个产品时,如果分别显示这三个产品 ...