Codeforces Round #699 (Div. 2)
A Space Navigation
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
#define IOS ios::sync_with_stdio(false); cin.tie(0); cout.tie(0)
#define RI register int
const int MOD = 1e9 + 7;
const double PI = acos(-1.0);
const int INF = 0x3f3f3f3f;
const int N = 2e5 + 20;
int n, m;
char s[N];
int main()
{
int __;
scanf("%d", &__);
while(__ -- )
{
scanf("%d%d", &n, &m);
scanf("%s", s);
int r = 0, u = 0, l = 0, d = 0;
int len = strlen(s);
for(int i = 0; i < len; ++ i)
{
if(s[i] == 'R') r ++;
if(s[i] == 'U') u ++;
if(s[i] == 'D') d ++;
if(s[i] == 'L') l ++;
}
int flag = 0;
if(n >= 0 && r < n) flag = 1;
if(n < 0 && l < abs(n)) flag = 1;
if(m >= 0 && u < m) flag = 1;
if(m < 0 && d < abs(m)) flag = 1;
if(flag) puts("NO");
else puts("YES");
}
return 0;
}
B New Colony
最多也就填充 \(10000\) 块,直接模拟即可,当滑出边界时 \(break\) 掉
#include <bits/stdc++.h>
using namespace std;
const int N = 100 + 10;
int n, k;
int h[N];
int main()
{
int __;
scanf("%d", &__);
while(__ -- )
{
scanf("%d%d", &n, &k);
for(int i = 1; i <= n; ++ i) scanf("%d", &h[i]);
int res;
bool flag = 0;
for(int i = 1; i <= k; ++ i)
{
flag = 1;
for(int j = 1; j < n; ++ j)
if(h[j] < h[j + 1])
{
flag = 0;
h[j] ++;
res = j;
break;
}
if(flag == 1) break;
}
if(flag) puts("-1");
else printf("%d\n", res);
}
return 0;
}
C Fence Painting
需要的颜色可以直接利用,不需要的颜色染到当前就是该颜色的位置或者接下来就要被染掉的位置
可以用队列暂存当前不需要的颜色,下次染色之前用掉
#include <bits/stdc++.h>
using namespace std;
const int N = 1e5 + 20;
int n, m;
int a[N], b[N], c[N];
int res[N];
map<int, vector<int>> mp;
map<int, vector<int>> hav;
bool check()
{
mp.clear(); hav.clear();
for(int i = 1; i <= n; ++ i)
if(a[i] != b[i]) mp[b[i]].push_back(i);
else hav[b[i]].push_back(i);
queue<int> q;
for(int i = 1; i <= m; ++ i)
{
if(!mp[c[i]].size())
{
if(!hav[c[i]].size()) q.push(i);
else
{
q.push(i);
while(!q.empty())
{
res[q.front()] = hav[c[i]].back();
q.pop();
}
}
}
else
{
while(!q.empty())
{
res[q.front()] = mp[c[i]].back();
q.pop();
}
res[i] = mp[c[i]].back();
a[res[i]] = c[i];
hav[c[i]].push_back(res[i]);
mp[c[i]].pop_back();
}
}
if(!q.empty()) return 0;
for(int i = 1; i <= n; ++ i)
if(a[i] != b[i]) return 0;
return 1;
}
int main()
{
int __;
scanf("%d", &__);
while(__ -- )
{
scanf("%d%d", &n, &m);
for(int i = 1; i <= n; ++ i) scanf("%d", &a[i]);
for(int i = 1; i <= n; ++ i) scanf("%d", &b[i]);
for(int i = 1; i <= m; ++ i) scanf("%d", &c[i]);
if(check())
{
puts("YES");
for(int i = 1; i <= m; ++ i) printf("%d ", res[i]);
puts("");
}
else puts("NO");
}
return 0;
}
D AB Graph
如果存在两个点之间的两条边上字母相同,一直在这两个点之间走即可
如果不存在上述情况,即任意两个点之间的两条边上字母不相同,则分奇偶讨论:
对于奇数的情况,任选两个点,在这两点之间一直走即可
对于偶数的情况,需要找到一个点 \(u\) 既有到 \(x\) 的字母 \(a\) 的出边, 也有到 \(y\) 的字母 \(b\) 的出边,在 \(u\) 和 \(x\) 之间走一半, 在 \(u\) 和 \(y\) 之间走一半即可
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
#define IOS ios::sync_with_stdio(false); cin.tie(0); cout.tie(0)
#define RI register int
const int MOD = 1e9 + 7;
const double PI = acos(-1.0);
const int INF = 0x3f3f3f3f;
const int N = 1e3 + 20;
int n, m;
char g[N][N];
void init()
{
for(int i = 1; i <= n; ++ i)
for(int j = i + 1; j <= n; ++ j)
if(g[i][j] == g[j][i])
{
puts("YES");
for(int k = 1; k <= m + 1; ++ k) printf("%d ", k % 2 ? i : j);
puts(""); return;
}
if(m % 2)
{
puts("YES");
for(int i = 1; i <= m + 1; ++ i) printf("%d ", i % 2 ? 1 : 2);
puts(""); return;
}
for(int i = 1; i <= n; ++ i)
{
int hav_a = 0, hav_b = 0;
for(int j = 1; j <= n; ++ j)
{
if(i == j) continue;
if(g[i][j] == 'a') hav_a = j;
if(g[i][j] == 'b') hav_b = j;
if(hav_a && hav_b) break;
}
if(!hav_a || !hav_b) continue;
puts("YES");
if(m % 4)
{
for(int j = 1; j <= m / 2 + 1; ++ j) printf("%d ", j % 2 ? hav_a : i);
for(int j = 1; j <= m / 2; ++ j) printf("%d ", j % 2 ? hav_b : i);
}
else
{
for(int j = 1; j <= m / 2 + 1; ++ j) printf("%d ", j % 2 ? i : hav_a);
for(int j = 1; j <= m / 2; ++ j) printf("%d ", j % 2 ? hav_b : i);
}
puts(""); return;
}
puts("NO");
return;
}
int main()
{
int __;
scanf("%d", &__);
while(__ -- )
{
scanf("%d%d", &n, &m); getchar();
for(int i = 1; i <= n; ++ i) scanf("%s", g[i] + 1);
init();
}
return 0;
}
E Sorting Books
考虑一种贪心策略,对于当前区间,应该尽量让出现次数较多的颜色保持不变,夹在中间的其他颜色后移.
设\(f[i]\) 为 \([i, n]\) 保持不变的书数量的最大值, 答案为 \(n - f[1]\)
状态转移为 f[i] = max(f[i + 1], f[i]), 若当前该种颜色还没全部出现,考虑维持该颜色不动是否更优
为了防止区间重叠,只有当一种颜色全部出现后再合并区间,即 \(f[i] = max(f[i], cnt[a[i]] + f[r[a[i] + 1])\)
#include <bits/stdc++.h>
using namespace std;
const int N = 5e5 + 20;
int n;
int a[N];
int f[N], cnt[N], l[N], r[N];
int main()
{
scanf("%d", &n);
for(int i = 1; i <= n; ++ i)
{
scanf("%d", &a[i]);
if(!l[a[i]]) l[a[i]] = i;
r[a[i]] = i;
}
for(int i = n; i >= 1; -- i)
{
f[i] = f[i + 1];
cnt[a[i]] ++;
if(l[a[i]] == i) f[i] = max(f[i], cnt[a[i]] + f[r[a[i]] + 1]);
else f[i] = max(f[i], cnt[a[i]]);
}
printf("%d\n", n - f[1]);
return 0;
}
Codeforces Round #699 (Div. 2)的更多相关文章
- Codeforces Round #366 (Div. 2) ABC
Codeforces Round #366 (Div. 2) A I hate that I love that I hate it水题 #I hate that I love that I hate ...
- Codeforces Round #354 (Div. 2) ABCD
Codeforces Round #354 (Div. 2) Problems # Name A Nicholas and Permutation standard input/out ...
- Codeforces Round #368 (Div. 2)
直达–>Codeforces Round #368 (Div. 2) A Brain’s Photos 给你一个NxM的矩阵,一个字母代表一种颜色,如果有”C”,”M”,”Y”三种中任意一种就输 ...
- cf之路,1,Codeforces Round #345 (Div. 2)
cf之路,1,Codeforces Round #345 (Div. 2) ps:昨天第一次参加cf比赛,比赛之前为了熟悉下cf比赛题目的难度.所以做了round#345连试试水的深浅..... ...
- Codeforces Round #279 (Div. 2) ABCDE
Codeforces Round #279 (Div. 2) 做得我都变绿了! Problems # Name A Team Olympiad standard input/outpu ...
- Codeforces Round #262 (Div. 2) 1003
Codeforces Round #262 (Div. 2) 1003 C. Present time limit per test 2 seconds memory limit per test 2 ...
- Codeforces Round #262 (Div. 2) 1004
Codeforces Round #262 (Div. 2) 1004 D. Little Victor and Set time limit per test 1 second memory lim ...
- Codeforces Round #371 (Div. 1)
A: 题目大意: 在一个multiset中要求支持3种操作: 1.增加一个数 2.删去一个数 3.给出一个01序列,问multiset中有多少这样的数,把它的十进制表示中的奇数改成1,偶数改成0后和给 ...
- Codeforces Round #268 (Div. 2) ABCD
CF469 Codeforces Round #268 (Div. 2) http://codeforces.com/contest/469 开学了,时间少,水题就不写题解了,不水的题也不写这么详细了 ...
随机推荐
- POJ-3984 迷宫问题 (BFS)
题意:有一个\(5\)X\(5\)的\(01\)图,输出从左上角走到右下角的最短路径. 题解:基础的bfs,这里困难的是如何输出这个最短路径,我们可以用一个结构体来存点和路径,我们每次向外去拓展的时候 ...
- Nginx基础 - Nginx+Lua实现灰度发布与WAF
1.Nginx加载Lua环境默认情况下Nginx不支持Lua模块, 需要安装LuaJIT解释器, 并且需要重新编译Nginx, 建议使用openrestry 1)环境准备 [root@localhos ...
- Python_微信支付(云开发)
一.创建云开发小程序 1.初始化云开发环境 //app.js App({ onLaunch: function () { wx.cloud.init({ //初始化云开发环境 env: 'wxypay ...
- OpenStack Train版-13.安装块存储服务cinder(控制节点)
Cinder的核心功能是对卷的管理,允许对卷.卷的类型.卷的快照.卷备份进行处理.它为后端不同的存储设备提供给了统一的接口,不同的块设备服务厂商在Cinder中实现其驱动,可以被Openstack整合 ...
- leetcode16 最接近的三数之和 双指针
三个数循环太复杂 确定一个数,搜索另两个 先排序,之后就确定了搜索的策略 if(tp>target) while (l < r && nums[r] == nums[--r ...
- 鸟哥的linux私房菜——第十六章学习(程序管理与 SELinux 初探)
第十六章.程序管理与 SE Linux 初探 在 Linux 系统当中:"触发任何一个事件时,系统都会将他定义成为一个程序,并且给予这个程序一个 ID ,称为 PID,同时依据启发这个程序的 ...
- apt 和 apt-get 之间有什么区别?
使用ubuntu的朋友一定会接触一个命令就是apt-get . 使用该工具安装各种应用程序那叫一个爽. 在 Ubuntu 16.04 发行后,apt使用渐渐频繁起来. 那么,apt-get 与 apt ...
- Mybatis基础:Mybatis映射配置文件,Mybatis核心配置文件,Mybatis传统方式开发
一.Mybatis快速入门 1.1 框架介绍 框架是一款半成品软件,我们可以基于这个半成品软件继续开发,来完成我们个性化的需求! 框架:大工具,我们利用工具,可以快速开发项目 (mybatis也是一个 ...
- 使用 js 实现一个简易版的模版引擎
使用 js 实现一个简易版的模版引擎 regex (function test() { this.str = str; })( window.Test = ...; format() { let ar ...
- css animation & animation-fill-mode
css animation & animation-fill-mode css animation effect https://developer.mozilla.org/en-US/doc ...