当前位置:网站首页>Solution to the fourth "intelligence Cup" National College Students' IT skills competition (group B of the final)
Solution to the fourth "intelligence Cup" National College Students' IT skills competition (group B of the final)
2022-04-23 15:57:00 【Ten thousand volt little sun】
T229470 A. Xiao Zhi's doubts
call string Of substr Method , Violence is enough .
#include<bits/stdc++.h>
#define int long long
#define rep(i, l, r) for (int i = l; i <= r; ++i)
using namespace std;
typedef long long ll;
const int N = 2e6 + 7;
const int mod = 1e9 + 7;
signed main(){
string s;
cin>>s;
int n=s.size();
int ans=0;
for(int i=0;i<n-7;i++){
// if(s[i]=='c'&&s[i+1]=='h'&&s[i+2]=='u'&&s[i+3]&&s[i+4])
string t=s.substr(i,8);
if(t=="chuanzhi") ans++;
}
cout<<ans<<endl;
return 0;
}
T229471 B. A triple
Triple cycle violence
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 2e6 + 7;
const int mod = 1e9 + 7;
const int MOD = 998244353;
#define int long long
#define rep(i, l, r) for (int i = l; i <= r; ++i)
int a[N];
void solve(){
int n;
cin>>n;
for(int i=0;i<n;i++){
cin>>a[i];
}
int ans=0;
for(int i=0;i<n;i++){
for(int j=i;j<n;j++){
for(int k=j;k<n;k++){
if(a[i]+a[j]==a[k]) ans++;
}
}
}
cout<<ans<<endl;
}
signed main(){
int _;
cin>>_;
while(_--) solve();
return 0;
}
T229472 C. Line up
As long as another array has the number of that array , In exchange for n 2 n^2 n2 Once, you can , Line up as you want , Bubbling .
But I misunderstood this question , I changed b Array . The title means to change a Array ,wa3
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 2e6 + 7;
const int mod = 1e9 + 7;
const int MOD = 998244353;
#define int long long
#define rep(i, l, r) for (int i = l; i <= r; ++i)
int a[N], b[N], c[N], d[N];
void solve() {
int n;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a[i];
c[i]=a[i];
}
for (int j = 0; j < n; j++) {
cin >> b[j];
d[j]=b[j];
}
sort(c,c+n);
sort(d,d+n);
for(int i=0;i<n;i++){
if(c[i]!=d[i]){
cout<<"NO"<<endl;
return;
}
}
vector<int> ans;
vector<int> res;
for (int i = 0; i < n; i++) {
if (a[i] == b[i])
continue;
int pos = -1;
for (int j = i + 1; j < n; j++) {
if (a[j] == b[i]) {
pos = j;
}
}
for (int j = pos; j > i; j--) {
ans.push_back(j+1);
res.push_back(j);
swap(a[j], a[j - 1]);
}
}
cout << "YES" << endl;
for (int i = 0; i < ans.size(); i++) {
cout << ans[i] << " " << res[i] << endl;
}
cout << "0 0\n";
}
signed main() {
int _;
cin >> _;
while (_--)
solve();
return 0;
}
R71214110 Memorizing words
Two points answer m,check Words , Let's start with the first few , Judge how many days he will recite , and k Comparison .
leetcode The original title is ,leetcode410https://leetcode-cn.com/problems/split-array-largest-sum/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 2e6 + 7;
const int mod = 1e9 + 7;
const int MOD = 998244353;
#define int long long
#define rep(i, l, r) for (int i = l; i <= r; ++i)
int a[N];
bool check(vector<int> &nums, int x, int m) {
long long sum = 0;
int cnt = 1;
for (int i = 0; i < nums.size(); i++) {
if (sum + nums[i] > x) {
cnt++;
sum = nums[i];
} else {
sum += nums[i];
}
}
return cnt <= m;
}
int work(vector<int> &nums, int m) {
long long left = 0, right = 0;
for (int i = 0; i < nums.size(); i++) {
right += nums[i];
if (left < nums[i]) {
left = nums[i];
}
}
while (left < right) {
long long mid = (left + right) >> 1;
if (check(nums, mid, m)) {
right = mid;
} else {
left = mid + 1;
}
}
return left;
}
void solve() {
int n, k;
cin >> n >> k;
vector<int> nums(n);
for (int i = 0; i < n; i++) {
cin >> nums[i];
nums[i] *= nums[i];
}
cout<<work(nums,k)<<endl;
}
signed main() {
solve();
return 0;
}
T229475 F1. Living in a tree (easy version)
According to the nature of the xor ,a To b XOR of a To c Exclusive or of . This middle point can be taken at will , So let's take a root node . If there is xor[u] ^ xor[v]== k.
Treelike DFS.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 5e5 + 7;
const int mod = 1e9 + 7;
const int MOD = 998244353;
#define int unsigned long long
#define rep(i, l, r) for (int i = l; i <= r; ++i)
vector<pair<int, int> > g[N];
int xorr[N];
void dfs(int u, int f, int val) {
xorr[u] = val;
for (int i = 0; i < g[u].size(); i++) {
int next = g[u][i].first, w = g[u][i].second;
if (next == f)
continue;
dfs(next, u, w ^ val);
}
}
void solve() {
int n, m, u, v, w, k;
cin >> n >> m;
for (int i = 1; i < n; i++) {
cin >> u >> v >> w;
g[u].push_back({
v, w});
g[v].push_back({
u, w});
}
dfs(n-1, 0, 0);
while (m--) {
cin >> u >> v >> k;
if ((xorr[u] ^ xorr[v]) == k) {
cout << "YES\n";
} else {
cout << "NO\n";
}
}
}
signed main() {
ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
solve();
return 0;
}
版权声明
本文为[Ten thousand volt little sun]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231405457118.html
边栏推荐
- Load Balancer
- Fastjon2他来了,性能显著提升,还能再战十年
- Do we media make money now? After reading this article, you will understand
- vim指定行注释和解注释
- Compile, connect -- Notes
- Neodynamic Barcode Professional for WPF V11.0
- MySQL optimistic lock to solve concurrency conflict
- [AI weekly] NVIDIA designs chips with AI; The imperfect transformer needs to overcome the theoretical defect of self attention
- 王启亨谈Web3.0与价值互联网“通证交换”
- 【现代电子装联期末复习要点】
猜你喜欢

Spark 算子之distinct使用

Metalife established a strategic partnership with ESTV and appointed its CEO Eric Yoon as a consultant

WPS brand was upgraded to focus on China. The other two domestic software were banned from going abroad with a low profile

How important is the operation and maintenance process? I heard it can save 2 million a year?

Website pressure measurement tools Apache AB, webbench, Apache jemeter

负载均衡器

Spark 算子之coalesce与repartition

ESP32编译环境的搭建

Pgpool II 4.3 Chinese Manual - introductory tutorial

R语言中实现作图对象排列的函数总结
随机推荐
VIM specifies the line comment and reconciliation comment
捡起MATLAB的第(10)天
Leetcode-374 guess the size of the number
Groupby use of spark operator
Neodynamic Barcode Professional for WPF V11. 0
TIA博图——基本操作
JVM - Chapter 2 - class loader subsystem
Calculate the number of occurrences of a character
API IX JWT auth plug-in has an error. Risk announcement of information disclosure in response (cve-2022-29266)
ESP32_ Arduino
One brush 314 sword finger offer 09 Implement queue (E) with two stacks
Win11/10家庭版禁用Edge的inprivate浏览功能
Go concurrency and channel
Spark 算子之distinct使用
volatile的含义以及用法
shell_ two
Use bitnami PostgreSQL docker image to quickly set up stream replication clusters
Implement default page
The principle and common methods of multithreading and the difference between thread and runnable
[split of recursive number] n points K, split of limited range