【AtCoder】ARC074
ARC 074
C - Chocolate Bar
直接枚举第一刀横切竖切,然后另一块要求如果横切分成\(H / 2\)竖切分成\(W/2\)即可
#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);
}
int64 H,W,ans = 1e18;
int64 maxdec(int64 a,int64 b,int64 c) {
return max(max(abs(a - b),abs(a - c)),abs(b - c));
}
void Solve() {
read(H);read(W);
for(int i = 1 ; i < H ; ++i) {
int64 h = (H - i) / 2;
ans = min(ans,maxdec(i * W,h * W,(H - i - h) * W));
int64 t = W / 2;
ans = min(ans,maxdec(i * W,t * (H - i),(W - t) * (H - i)));
}
for(int i = 1 ; i < W ; ++i) {
int64 h = (W - i) / 2;
ans = min(ans,maxdec(i * H,h * H,(W - i - h) * H));
int64 t = H / 2;
ans = min(ans,maxdec(i * H,t * (W - i),(H - t) * (W - i)));
}
out(ans);enter;
}
int main() {
#ifdef ivorysi
freopen("f1.in","r",stdin);
#endif
Solve();
}
D - 3N Numbers
直接算前i个数最大的N个是多少,后i个数最小的是多少,可以用set
#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 300005
//#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);
}
struct cmp {
bool operator () (const int &a,const int &b) const {
return a > b;
}
};
int N,a[MAXN];
int64 f[MAXN],b[MAXN];
multiset<int> s2;
multiset<int,cmp> s1;
void Solve() {
read(N);
for(int i = 1 ; i <= 3 * N ; ++i) read(a[i]);
int64 sum = 0;
for(int i = 1 ; i <= 3 * N ; ++i) {
s1.insert(a[i]);sum += a[i];
if(s1.size() > N) {
auto t = *(--s1.end());
s1.erase(--s1.end());
sum -= t;
}
f[i] = sum;
}
sum = 0;
for(int i = 3 * N ; i >= 1 ; --i) {
s2.insert(a[i]);sum += a[i];
if(s2.size() > N) {
auto t = *(--s2.end());
s2.erase(--s2.end());
sum -= t;
}
b[i] = sum;
}
int64 ans = f[N] - b[N + 1];
for(int i = N + 1 ; i <= 2 * N ; ++i) {
ans = max(ans,f[i] - b[i + 1]);
}
out(ans);enter;
}
int main() {
#ifdef ivorysi
freopen("f1.in","r",stdin);
#endif
Solve();
}
E - RGB Sequence
就是记录\(dp[r][g][b]\)为上一次出现r的位置,出现g的位置和出现b的位置,把不合法的状态标成0
#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 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);
}
const int MOD = 1000000007;
int N,M;
int dp[305][305][305],sum[3][305][305];
vector<pii > v[305];
int inc(int a,int b) {
return a + b >= MOD ? a + b - MOD : a + b;
}
int mul(int a,int b) {
return 1LL * a * b % MOD;
}
bool check(int r,int g,int b,int len) {
for(int i = 0 ; i < v[len].size() ; ++i) {
pii t = v[len][i];
int cnt = 0;
if(r >= t.fi) ++cnt;
if(g >= t.fi) ++cnt;
if(b >= t.fi) ++cnt;
if(cnt != t.se) return false;
}
return true;
}
void increase(int r,int g,int b) {
sum[0][g][b] = inc(sum[0][g][b],dp[r][g][b]);
sum[1][r][b] = inc(sum[1][r][b],dp[r][g][b]);
sum[2][r][g] = inc(sum[2][r][g],dp[r][g][b]);
}
void Solve() {
read(N);read(M);
int l,r,x;
for(int i = 1 ; i <= M ; ++i) {
read(l);read(r);read(x);
v[r].pb(mp(l,x));
}
dp[0][0][0] = 1;
sum[0][0][0] = 1;
sum[1][0][0] = 1;
sum[2][0][0] = 1;
for(int i = 1 ; i <= N ; ++i) {
for(int j = 0 ; j < i ; ++j) {
for(int k = 0 ; k < i ; ++k) {
dp[i][j][k] = sum[0][j][k];
dp[j][i][k] = sum[1][j][k];
dp[j][k][i] = sum[2][j][k];
if(!check(i,j,k,i)) dp[i][j][k] = 0;
if(!check(j,i,k,i)) dp[j][i][k] = 0;
if(!check(j,k,i,i)) dp[j][k][i] = 0;
}
}
memset(sum,0,sizeof(sum));
for(int j = 0 ; j < i ; ++j) {
for(int k = 0 ; k < i ; ++k) {
increase(i,j,k);
increase(j,i,k);
increase(j,k,i);
}
}
}
int ans = 0;
for(int i = 0 ; i < N ; ++i) {
for(int j = 0 ; j < N ; ++j) {
ans = inc(ans,dp[N][i][j]);
ans = inc(ans,dp[i][N][j]);
ans = inc(ans,dp[i][j][N]);
}
}
out(ans);enter;
}
int main() {
#ifdef ivorysi
freopen("f1.in","r",stdin);
#endif
Solve();
}
F - Lotus Leaves
行列拆点,对于然后每个叶子新建一个点往对应的行列连边
对于起点和重点的边建成无穷大
然后跑网络流求最小割即可
#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);
}
struct node {
int to,next,cap;
}E[MAXN];
int sumE = 1,head[MAXN];
int H,W,Ncnt,S,T;
char s[105][105];
void add(int u,int v,int c) {
E[++sumE].to = v;
E[sumE].next = head[u];
E[sumE].cap = c;
head[u] = sumE;
}
void addtwo(int u,int v,int c) {
add(u,v,c);add(v,u,0);
}
int gap[MAXN],dis[MAXN];
int isap(int u,int aug) {
if(u == T) return aug;
int flow = 0;
for(int i = head[u] ; i ;i = E[i].next) {
int v = E[i].to;
if(E[i].cap) {
if(dis[v] + 1 == dis[u]) {
int t = isap(v,min(aug - flow,E[i].cap));
flow += t;
E[i].cap -= t;
E[i ^ 1].cap += t;
if(aug == flow) return flow;//这块写错了,如果能满流的话应该返回而不是让dis++
if(dis[S] >= Ncnt) return flow;
}
}
}
--gap[dis[u]];
if(!gap[dis[u]]) {dis[S] = Ncnt;return flow;}
dis[u]++;
++gap[dis[u]];
return flow;
}
void Solve() {
read(H);read(W);
for(int i = 1 ; i <= H ; ++i) {
scanf("%s",s[i] + 1);
}
Ncnt = H + W;
pii p[2];
for(int i = 1 ; i <= H ; ++i) {
for(int j = 1 ; j <= W ; ++j) {
if(s[i][j] != '.') {
++Ncnt;
int t = 0;
if(s[i][j] == 'o') t = 1;
else t = 0x7fffffff;
addtwo(Ncnt,i,t);addtwo(i,Ncnt,t);
addtwo(j + H,Ncnt,t);addtwo(Ncnt,j + H,t);
if(s[i][j] == 'S') {p[0] = mp(i,j);S = Ncnt;}
if(s[i][j] == 'T') {p[1] = mp(i,j);T = Ncnt;}
}
}
}
if(p[0].fi == p[1].fi || p[0].se == p[1].se) {puts("-1");return;}
int ans = 0;
while(dis[S] < Ncnt) ans += isap(S,0x7fffffff);
out(ans);enter;
}
int main() {
#ifdef ivorysi
freopen("f1.in","r",stdin);
#endif
Solve();
}
【AtCoder】ARC074的更多相关文章
- 【AtCoder】ARC092 D - Two Sequences
[题目]AtCoder Regular Contest 092 D - Two Sequences [题意]给定n个数的数组A和数组B,求所有A[i]+B[j]的异或和(1<=i,j<=n ...
- 【Atcoder】CODE FESTIVAL 2017 qual A D - Four Coloring
[题意]给定h,w,d,要求构造矩阵h*w满足任意两个曼哈顿距离为d的点都不同色,染四色. [算法]结论+矩阵变换 [题解] 曼哈顿距离是一个立着的正方形,不方便处理.d=|xi-xj|+|yi-yj ...
- 【AtCoder】ARC 081 E - Don't Be a Subsequence
[题意]给定长度为n(<=2*10^5)的字符串,求最短的字典序最小的非子序列字符串. http://arc081.contest.atcoder.jp/tasks/arc081_c [算法]字 ...
- 【AtCoder】AGC022 F - Leftmost Ball 计数DP
[题目]F - Leftmost Ball [题意]给定n种颜色的球各k个,每次以任意顺序排列所有球并将每种颜色最左端的球染成颜色0,求有多少种不同的颜色排列.n,k<=2000. [算法]计数 ...
- 【AtCoder】AGC005 F - Many Easy Problems 排列组合+NTT
[题目]F - Many Easy Problems [题意]给定n个点的树,定义S为大小为k的点集,则f(S)为最小的包含点集S的连通块大小,求k=1~n时的所有点集f(S)的和取模92484403 ...
- 【AtCoder】ARC067 F - Yakiniku Restaurants 单调栈+矩阵差分
[题目]F - Yakiniku Restaurants [题意]给定n和m,有n个饭店和m张票,给出Ai表示从饭店i到i+1的距离,给出矩阵B(i,j)表示在第i家饭店使用票j的收益,求任选起点和终 ...
- 【AtCoder】ARC095 E - Symmetric Grid 模拟
[题目]E - Symmetric Grid [题意]给定n*m的小写字母矩阵,求是否能通过若干行互换和列互换使得矩阵中心对称.n,m<=12. [算法]模拟 [题解]首先行列操作独立,如果已确 ...
- 【Atcoder】AGC022 C - Remainder Game 搜索
[题目]C - Remainder Game [题意]给定n个数字的序列A,每次可以选择一个数字k并选择一些数字对k取模,花费2^k的代价.要求最终变成序列B,求最小代价或无解.n<=50,0& ...
- 【Atcoder】AGC 020 B - Ice Rink Game 递推
[题意]n个人进行游戏,每轮只保留最大的a[i]倍数的人,最后一轮过后剩余2人,求最小和最大的n,或-1.n<=10^5. [算法]递推||二分 [题解]令L(i),R(i)表示第i轮过后的最小 ...
随机推荐
- 将C注册到lua环境中使用
注册到lua的方式有两种,一种是lua解释器,如果支持动态链接,使用动态链接机制,将函数接口编译成动态链接库,然后将动态链接库放到lua的C路径(LUA_CPATH)中,然后在lua文件中直接使用 r ...
- Ubuntu18系统qt生成程序无法双击运行问题
1.Ubuntu18 安装qt编译生成的程序文件类型为application/x-sharedlib,无法双击直接运行.文件类型应该为x-executable. 2.解决方法 在.pro文件中添加下面 ...
- 从MySQL中导入数据到MongoDB中
从sql中导出需要的数据为csv格式的数据 select field1,field2,...,fieldn from TABLE into outfile '/test.csv' fields ter ...
- C++ sizeof()练习
class A { int a; short b; int c; char d; }; class B { double a; short b; int c; char d; }; 在32位机器上用g ...
- JMS消息队列之ActiveMQ简单示例
废话不多说,在进入主题前先看一张图,对ActiveMQ有个大体的了解: 下面进入主题: 1.添加需要的maven依赖 <!-- active mq begin --> < ...
- 安装fastDFS的依赖包fdfs_client报错解决方法
输入以下指令后再尝试安装 python3环境下输入: sudo apt-get install python3 python-dev python3-dev build-essential libss ...
- swift 实践- 04 -- UIButton
import UIKit class ViewController: UIViewController { // 按钮的创建 // UIButtonType.system: 前面不带图标, 默认文字为 ...
- 什么是java序列化,如何实现java 序列化?
序列化就是一种用来处理对象流的机制,所谓对象流也就是将对象的内容进行流化. 可以对流化后的对象进行读写操作,也可将流化后的对象传输于网络之间.序列化是为了解决在对对象流进行读写操作时所引发的问题. ...
- SpringData分页功能
在SpringData中实现分页功能我们需要将接口实现PagingAndSortingRepository这个接口提供了分页查询的方法 Page<T> findAll(Pageable p ...
- SpringMVC国际化与文件上传
点击阅读上一章 其实SpringMVC中的页面国际化与上一章的验证国际化基本一致. 1.对页面进行国际化 1)首先我们对Spring配置文件中添加国际化bean配置 <!-- 注册国际化信息,必 ...