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)的更多相关文章

  1. 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 ...

  2. Codeforces Round #354 (Div. 2) ABCD

    Codeforces Round #354 (Div. 2) Problems     # Name     A Nicholas and Permutation standard input/out ...

  3. Codeforces Round #368 (Div. 2)

    直达–>Codeforces Round #368 (Div. 2) A Brain’s Photos 给你一个NxM的矩阵,一个字母代表一种颜色,如果有”C”,”M”,”Y”三种中任意一种就输 ...

  4. cf之路,1,Codeforces Round #345 (Div. 2)

     cf之路,1,Codeforces Round #345 (Div. 2) ps:昨天第一次参加cf比赛,比赛之前为了熟悉下cf比赛题目的难度.所以做了round#345连试试水的深浅.....   ...

  5. Codeforces Round #279 (Div. 2) ABCDE

    Codeforces Round #279 (Div. 2) 做得我都变绿了! Problems     # Name     A Team Olympiad standard input/outpu ...

  6. 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 ...

  7. 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 ...

  8. Codeforces Round #371 (Div. 1)

    A: 题目大意: 在一个multiset中要求支持3种操作: 1.增加一个数 2.删去一个数 3.给出一个01序列,问multiset中有多少这样的数,把它的十进制表示中的奇数改成1,偶数改成0后和给 ...

  9. Codeforces Round #268 (Div. 2) ABCD

    CF469 Codeforces Round #268 (Div. 2) http://codeforces.com/contest/469 开学了,时间少,水题就不写题解了,不水的题也不写这么详细了 ...

随机推荐

  1. .Net下的PDF打印

    简单研究了一下.Net下的PDF打印,一路发现了很多小坑. 第三方组件 这里使用的解析PDF的组件是mupdf,特点和C#调用在 这里 有介绍. 实现的功能 支持页面大小.边距.打印机选择.打印机dp ...

  2. 前端模块化之ES Module

    一.概述 之前提到的几种模块化规范:CommonJS.AMD.CMD都是社区提出的.ES 2015在语言层面上实现了模块功能,且实现简单,可以替代CommonJS和AMD规范,成为在服务器和浏览器通用 ...

  3. 【算法】KMP算法

    简介 KMP算法由 Knuth-Morris-Pratt 三位科学家提出,可用于在一个 文本串 中寻找某 模式串 存在的位置. 本算法可以有效降低在一个 文本串 中寻找某 模式串 过程的时间复杂度.( ...

  4. Dyno-queues 分布式延迟队列 之 基本功能

    Dyno-queues 分布式延迟队列 之 基本功能 目录 Dyno-queues 分布式延迟队列 之 基本功能 0x00 摘要 0x01 Dyno-queues分布式延迟队列 1.1 设计目标 1. ...

  5. Javascript实现"点按钮出随机背景色的"三个DIV

    <!DOCTYPE html> <html> <head> <title>Random_Color-Transformation</title&g ...

  6. 使用 js 实现一个简易版的模版引擎

    使用 js 实现一个简易版的模版引擎 regex (function test() { this.str = str; })( window.Test = ...; format() { let ar ...

  7. Windows 常用键盘快捷键:

    键盘快捷键 通过使用键盘快捷键可以节省时间. Windows 和 Mac 的键盘快捷键 在现代操作系统中和计算机软件程序中,键盘快捷键经常被使用. 使用键盘快捷键能帮您节省很多时间. 基本的快捷键 描 ...

  8. Virtual Reality In Action

    Virtual Reality In Action VR WebXR immersive 沉浸式 https://github.com/immersive-web/webxr https://imme ...

  9. 彻底解决Asp.netCore WebApi 3.1 跨域时的预检查204 options重复请求的问题

    Asp.netCore WebApi 3.1 跨域的预检查options问题 1:我们直接使用core跨域的中间件 ,注入跨域服务, services.AddCors(options => { ...

  10. 解决windwos系统80端口被暂用无法发布(NGINX、TOMCAT、IIS)

    原因: 一个操作系统有0-65535个端口,但是一个端口只能被一个应用程序使用.所以80端口只有一个,当开发发布时想用应用NGINX,TOMCAT,IIS发布时,如果有程序占用了,就无法使用了. 解决 ...