Codeforces Round #677 (Div. 3) 题解

A. Boring Apartments

题目

题解

简单签到题,直接数,小于这个数的\(+10\)。

代码

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define IOS ios_base::sync_with_stdio(0); cin.tie(0);cout.tie(0);
const int maxn = 2e5 + 10;
int a[maxn];
void solve(){
ll ans = 0;
int n; cin >> n; int cnt = 0, x = n, c10 = 1;
while(x){
x /= 10;
cnt++;
c10 *= 10;
}
c10 /= 10;
int t = n / c10;
// cout << c10 << " " << cnt << " " << t << endl;
ans += (t - 1) * 10;
cout << ans + (1 + cnt) * cnt / 2 << endl;
}
int main(){
IOS; int t; cin >> t;
while(t--){
solve();
}
return 0;
}

B. Yet Another Bookshelf(思维)

题目

题意

让书架上所有的书\((a[i] = 1)\) 相邻。每次可以将相邻的一段\(1\)(可以是\(1\)个)向左移或者右移。

题解

开始模拟了一遍,但没过,太菜了。

思路:统计每个\(1\)与其最近\(1\)之间有多少个\(0\)。

代码

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define IOS ios_base::sync_with_stdio(0); cin.tie(0);cout.tie(0);
const int maxn = 100 + 10;
int a[maxn], b[maxn];
void solve1(){
int n; cin >> n;
for (int i = 0; i < n; i++) cin >> a[i];
vector<int> num;
for (int i = 0; i < n; i++){
if(a[i] == 0) num.push_back(0);
if(a[i] == 1) {if(i == 0 || a[i-1] == 0) num.push_back(1); }
// cout << i << " " << a[i] << " " << num.size() << endl;
}
// for (auto x : num) cout << x << " "; cout << endl; n = num.size();
int cnt = 0, ans = 0x3f3f3f3f;
for (int i = 0; i < n; i++) cnt += (num[i] & 1); if(cnt == 1){
cout << 0 << endl; return;
} for (int l = 0; l + cnt - 1 < n; l++){
int r = l + cnt - 1;
int res = 0; vector<int> c0, c1;
for (int i = 0; i < n; i++){
if(i >= l && i <= r) {if(num[i] == 0) c0.push_back(i);}
else {
if(num[i] == 1) c1.push_back(i);
}
}
for (int i = 0; i < c1.size(); i++){
res += abs(c1[i] - c0[i]);
}
// cout << l << " " << r << " " << res << endl;
ans = min(ans, res);
} cout << ans << endl;
} void solve(){
int n; cin >> n;
vector<int> num;
for (int i = 0; i < n; i++){
cin >> a[i];
if(a[i]) num.push_back(i);
} cout << num.back() - num[0] - 1 - num.size() + 2 << endl;
}
int main(){
IOS; int t; cin >> t;
while(t--){
solve();
}
return 0;
}

C. Dominant Piranha(思维)

题目

题意

水族馆里的食人鱼每次可以吃掉比它小的相邻的食人鱼。求最后的那一个食人鱼最开始的位置。

题解

找最大值。(比B简单?)

代码

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pi pair<int, int>
#define IOS ios_base::sync_with_stdio(0); cin.tie(0);cout.tie(0);
const int maxn = 3e5 + 10;
int a[maxn];
void solve(){
int n; cin >> n;
for (int i = 1; i <= n; i++) cin >> a[i]; vector<pi> num;
for (int i = 1; i <= n; i++){
if(i > 1 && a[i] > a[i-1]) num.push_back({a[i], i});
if(i < n && a[i] > a[i+1]) num.push_back({a[i], i});
} int pos = -1;
for (auto p : num){
if(pos == -1) pos = p.second;
else if(a[pos] < p.first) pos = p.second;
}
cout << (pos == -1 ? -1 : pos) << endl;
}
int main(){
IOS; int t; cin >> t;
while(t--){
solve();
}
return 0;
}

D. Districts Connection(简单构造)

题目

题意

要在\(n\)个点建建立\(n-1\) 条边,使\(n\)个点联通(直接或者间接)。但是相同的帮派间不可以建边,构造出一个可行的方案。

题解

  • 当只有\(1\)个帮派的时候,连接\(n\)个顶点是不可能的。

  • 我们可以选一个帮派,记为\(gang1\),将其中一个点和其他的每一个点连接。这样保证这个点与不是帮派\(gang1\)的所有的点联通。 再将帮派\(gang1\)的其他点与不在帮派\(gang1\)的任一点连接,这样构造保证所有的点互相联通。

代码

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define IOS ios_base::sync_with_stdio(0); cin.tie(0);cout.tie(0);
const int maxn = 5e3 + 10;
int a[maxn];
void solve(){
int n; cin >> n;
unordered_map<int, vector<int>> p;
for (int i = 0; i < n; i++){
cin >> a[i];
p[a[i]].push_back(i + 1);
} if((int)p[a[0]].size() == n){
cout << "NO" << endl;
return;
}
cout << "YES" << endl;
int pos = a[0];
for(auto x : p){
if(x.first == pos) continue;
for(auto c : x.second) cout << 1 << " " << c << endl;
}
for(auto x : p){
if(x.first != a[0]){
pos = x.first;
break;
}
} vector<int> t = p[a[0]];
int q = p[pos][0];
// cout << "at: " << pos << " " << t.size() << " " << q << endl;
for (int i = 1; i < (int)t.size(); i++){
cout << q << " " << t[i] << endl;
}
}
int main(){
IOS; int t; cin >> t;
while(t--){
solve();
}
return 0;
}

E. Two Round Dances

题目

题解

( 在oeis网上输入\(12164510040883200\) 就明白了。)

圆排列。

代码

#include <bits/stdc++.h>
using namespace std;
#define ll unsigned long long
#define IOS ios_base::sync_with_stdio(0); cin.tie(0);cout.tie(0);
const int maxn = 3e5 + 10;
int a[maxn], dp[maxn];
void solve(){
int n; cin >> n;
if(n <= 4){
cout << (n == 2 ? 1 : 3) << endl;
return;
}
n /= 2; n-=1;
ll ans = 1;
for (int i = 1; i <= 2 * n + 1; i++) if(i != n + 1) ans *= i; cout << ans << endl;
}
int main(){
IOS; int t = 1;
while(t--){
solve();
}
return 0;
}

Codeforces Round #677 (Div. 3) 题解的更多相关文章

  1. Codeforces Round #182 (Div. 1)题解【ABCD】

    Codeforces Round #182 (Div. 1)题解 A题:Yaroslav and Sequence1 题意: 给你\(2*n+1\)个元素,你每次可以进行无数种操作,每次操作必须选择其 ...

  2. Codeforces Round #608 (Div. 2) 题解

    目录 Codeforces Round #608 (Div. 2) 题解 前言 A. Suits 题意 做法 程序 B. Blocks 题意 做法 程序 C. Shawarma Tent 题意 做法 ...

  3. Codeforces Round #525 (Div. 2)题解

    Codeforces Round #525 (Div. 2)题解 题解 CF1088A [Ehab and another construction problem] 依据题意枚举即可 # inclu ...

  4. Codeforces Round #528 (Div. 2)题解

    Codeforces Round #528 (Div. 2)题解 A. Right-Left Cipher 很明显这道题按题意逆序解码即可 Code: # include <bits/stdc+ ...

  5. Codeforces Round #466 (Div. 2) 题解940A 940B 940C 940D 940E 940F

    Codeforces Round #466 (Div. 2) 题解 A.Points on the line 题目大意: 给你一个数列,定义数列的权值为最大值减去最小值,问最少删除几个数,使得数列的权 ...

  6. Codeforces Round #665 (Div. 2) 题解

    Codeforces Round #665 (Div. 2) 题解 写得有点晚了,估计都官方题解看完切掉了,没人看我的了qaq. 目录 Codeforces Round #665 (Div. 2) 题 ...

  7. Codeforces Round #160 (Div. 1) 题解【ABCD】

    Codeforces Round #160 (Div. 1) A - Maxim and Discounts 题意 给你n个折扣,m个物品,每个折扣都可以使用无限次,每次你使用第i个折扣的时候,你必须 ...

  8. Codeforces Round #383 (Div. 2) 题解【ABCDE】

    Codeforces Round #383 (Div. 2) A. Arpa's hard exam and Mehrdad's naive cheat 题意 求1378^n mod 10 题解 直接 ...

  9. Codeforces Round #271 (Div. 2)题解【ABCDEF】

    Codeforces Round #271 (Div. 2) A - Keyboard 题意 给你一个字符串,问你这个字符串在键盘的位置往左边挪一位,或者往右边挪一位字符,这个字符串是什么样子 题解 ...

随机推荐

  1. C语言中 malloc

    参考:https://blog.csdn.net/kokodudu/article/details/11760863 一.malloc()和free()的基本概念以及基本用法: 1.函数原型及说明: ...

  2. 2-K8S常用命令

    kubectl 命令行管理工具 类型 命令 描述 基础命令 create 通过文件名或标准输入创建资源 expose 为Deployment,Pod创建service run 在集群中运行一个特定的镜 ...

  3. VSCODE 配置eslint规则和自动修复

    全局安装eslint 打开终端,运行npm install eslint -g全局安装ESLint. vscode安装插件 vscode 扩展设置 依次点击 文件 > 首选项 > 设置 { ...

  4. MySQL数据库之索引、事务、存储引擎详细讲解

    一.索引 1.1 索引的概念 索引是一个排序的列表,存储着索引值和这个值所对应的物理地址 无须对整个表进行扫描,通过物理地址就可以找到所需数据 (数据库索引类似书中的目录,通过目录就可以快速査找所需信 ...

  5. antd pro table中的文件上传

    概述 示例代码 列表页面 form 页面 model.js service.js 总结 概述 项目中经常会遇到在表格中展示图片的需求(比如展示用户信息时, 有一列是用户的头像). antd pro t ...

  6. Django的安装和项目的启动

    一.安装(安装最新LTS版): 1.命令行安装 pip install django==1.11.18 -i 源 2.pycharm 安装    二.创建项目 1.命令行创建 下面的命令创建了一个名为 ...

  7. 使用notepad++的nppexec插件格式化json和压缩json内容

    1.遇到问题 因为平时需要查看json内容,有时候修改后需要压缩json,虽然已经有网页可以实现,但每次打开网页也很麻烦啊.虽然notpad++也有NPPJSONViewer这个插件,但是目前只有格式 ...

  8. 洛谷 CF1012C Hills(动态规划)

    题目大意: 有几座山,如果一座山左右两边的山比它矮,那么可以在这个山上建房子,你有一台挖掘机,每天可以挖一座山一米,问你需要花多少代价可以分别盖1.2.3--座房子.(给出山的数量,以及每座山的高度) ...

  9. spring boot:actuator的安全配置:使用spring security做ip地址限制(spring boot 2.3.2)

    一,actuator有哪些环节要做安全配置? actuator是应用广泛的监控工具, 但在生产环境中使用时,需要做严格的安全保障, 避免造成信息泄露等严重的安全问题 actuator可以采取的安全措施 ...

  10. matplotlib直方图

    import matplotlib.pyplot as plt import matplotlib as mpl from matplotlib.font_manager import FontPro ...