think-cell Round 1 (A~C)

2024-02-18 12:52
文章标签 round cell think

本文主要是介绍think-cell Round 1 (A~C),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

think-cell Round 1

目录:A B C

A题:Maximise The Score

标签: 贪心(greedy)排序(sortings)

题目大意

  • 有一个长度为 2n,数值为 1 − 1e7 的数组a,可执行如下操作:
    1. 每步在a中选择两个数x, y删除,分数增加min(x, y)
  • 问:以最佳方式走完 n 步,计算最终能得到的最高分。

思路

  • 将a数组从大到小排序,每次加分为两数的最小值,易看出数组a中最大值一定不会作为分数加入,最大值与任意数一起删除可以将任意数作为分数加入,贪心的选择第二大的值与最大值一起被删除,重复此操作即为最优

AC代码

#include <bits/stdc++.h>
using namespace std;
void solve()
{int n; cin >> n;vector<int> a(2 * n);for (int i = 0; i < 2 * n; i++)cin >> a[i];sort(a.begin(), a.end());int res = 0;for (int i = 0; i < n; i++) res += a[2 * i];cout << res << endl;
}  
int main()
{int T; cin >> T;while(T--)solve();return 0; 
} 

B题:Permutation Printing

标签: 构造(constructive algorithms)数学(math)

题目大意

  • 构造一个长度为n的数组满足:不存在两个不同的索引 i 和 j ( 1 ≤ i , j < n;i ≠ j),使得 pi整除 pj 和 pi+1 整除 pj+1

思路

  • 任意> n 2 \frac{n}{2} 2n的数字都不可能是任何数字的倍数, 所以我们只要把> n 2 \frac{n}{2} 2n和其他数字交替放即可

AC代码

#include <bits/stdc++.h>
using namespace std;
void solve()
{int n; cin >> n;int l = 1, r = n;for (int i = 1; i <= n; i++) {int x;if (i % 2) x = l++;else x = r--;cout << x << " \n"[i == n];}
}  
int main()
{int T; cin >> T;while(T--)solve();return 0; 
} 

C题:Lexicographically Largest

标签: 构造(constructive algorithms)数据结构(data structures)贪心(greedy)排序(sortings)

题目大意

  • 有一个长度为 n 的数组 a 和一个集合 S (S中不含重复数字),进行以下三步操作恰好 n 次
    1. 选择一个索引 i ,使得 1 ≤ i ≤ n
    1. 将 ai + i 插入 S
    1. 删除ai。注意: ai 右边所有元素的索引将减少1 。
  • 最后将集合S中数字从大到小排序,找到字典序最大的一个排序后的集合

思路

  • 因为最后会进行排序,集合中的数越大越好,先选择前面的数后面索引 i会减小,所以先选后面的数字插入集合最优
  • 考虑:集合要去重,如果数组q是数组p的前缀且 p≠q 那么p的字典序大于q。所以需要将相同的数字减少去重达到增大数组长度的目的
  • 也就是如果存在相同的数字那么就先取其前面的数,使其索引减少,如此最终集合的长度一定可以取到n

AC代码

#include <bits/stdc++.h>
using namespace std;
const int N = 300010;
int a[N];
void solve()
{int n; cin >> n;for (int i = 1; i <= n; i++) {cin >> a[i];a[i] += i;}sort(a + 1, a + 1 + n, greater());for (int i = 2; i <= n; i++) {a[i] = min(a[i], a[i-1] - 1);}for (int i = 1; i <= n; i++) {cout << a[i] << " \n"[i == n];}
}  
int main()
{int T; cin >> T;while(T--)solve();return 0; 
} 

logo

//へ     /|
//  /\7    ∠_/
//  / │   / /
// │ Z _,< /   /`ヽ
// │     ヽ   /  〉
//  Y     `  /  /
// イ● 、 ●  ⊂⊃〈  /
// ()  へ    | \〈
//  >ー 、_  ィ  │ //
//  / へ   / ノ<| \\
//  ヽ_ノ  (_/  │//
//	  7       |/
//
/*__   _,--="=--,_   __/  \."    .-.    "./  \/  ,/  _   : :   _  \/` \\  `| /o\  :_:  /o\ |\__/`-'| :="~` _ `~"=: |\`     (_)     `/.-"-.   \      |      /   .-"-.
.---{     }--|  /,.-'-.,\  |--{     }---.)  (_)_)_)  \_/`~-===-~`\_/  (_(_(_)  (
(                         				))                                     (
'---------------------------------------'
*/

这篇关于think-cell Round 1 (A~C)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/721212

相关文章

Codeforces Round #240 (Div. 2) E分治算法探究1

Codeforces Round #240 (Div. 2) E  http://codeforces.com/contest/415/problem/E 2^n个数,每次操作将其分成2^q份,对于每一份内部的数进行翻转(逆序),每次操作完后输出操作后新序列的逆序对数。 图一:  划分子问题。 图二: 分而治之,=>  合并 。 图三: 回溯:

Codeforces Round #261 (Div. 2)小记

A  XX注意最后输出满足条件,我也不知道为什么写的这么长。 #define X first#define Y secondvector<pair<int , int> > a ;int can(pair<int , int> c){return -1000 <= c.X && c.X <= 1000&& -1000 <= c.Y && c.Y <= 1000 ;}int m

Codeforces Beta Round #47 C凸包 (最终写法)

题意慢慢看。 typedef long long LL ;int cmp(double x){if(fabs(x) < 1e-8) return 0 ;return x > 0 ? 1 : -1 ;}struct point{double x , y ;point(){}point(double _x , double _y):x(_x) , y(_y){}point op

Codeforces Round #113 (Div. 2) B 判断多边形是否在凸包内

题目点击打开链接 凸多边形A, 多边形B, 判断B是否严格在A内。  注意AB有重点 。  将A,B上的点合在一起求凸包,如果凸包上的点是B的某个点,则B肯定不在A内。 或者说B上的某点在凸包的边上则也说明B不严格在A里面。 这个处理有个巧妙的方法,只需在求凸包的时候, <=  改成< 也就是说凸包一条边上的所有点都重复点都记录在凸包里面了。 另外不能去重点。 int

cell phone teardown 手机拆卸

tweezer 镊子 screwdriver 螺丝刀 opening tool 开口工具 repair 修理 battery 电池 rear panel 后盖 front and rear cameras 前后摄像头 volume button board 音量键线路板 headphone jack 耳机孔 a cracked screen 破裂屏 otherwise non-functiona

Codeforces Round 971 (Div. 4) (A~G1)

A、B题太简单,不做解释 C 对于 x y 两个方向,每一个方向至少需要 x / k 向上取整的步数,取最大值。 由于 x 方向先移动,假如 x 方向需要的步数多于 y 方向的步数,那么最后 y 方向的那一步就不需要了,答案减 1 代码 #include <iostream>#include <algorithm>#include <vector>#include <string>

MemSQL Start[c]UP 2.0 - Round 1A(构造)

题目链接:http://codeforces.com/problemset/problem/452/A 解题思路: 打个表暴力查找匹配。 完整代码: #include <algorithm>#include <iostream>#include <cstring>#include <complex>#include <cstdio>#include <strin

Codeforces Round #281 (Div. 2)A(构造+暴力模拟)

题目链接:http://codeforces.com/problemset/problem/493/A 解题思路: 暴力的判断,分三种情况去判断即可。注意如果之前已经被罚下场后,那么在后面的罚下情况不应该算在输出结果内。 完整代码: #include <algorithm>#include <iostream>#include <cstring>#include <co

Codeforces Round #182 (Div. 2)A(水题)

题目链接:http://codeforces.com/contest/302/problem/A 解题思路: 只要通过重新排列使区间内和为0即是1,否则是0. 完整代码: #include <algorithm>#include <iostream>#include <cstring>#include <complex>#include <cstdio>#inc

Codeforces Round #233 (Div. 2)A(构造)

题目链接:http://codeforces.com/contest/399/problem/A 解题思路: 构造出来即可,考虑p-k和p+k两个边界分别于1和n作比较,对左右符号特殊处理。 完整代码: #include <algorithm>#include <iostream>#include <cstring>#include <complex>#include