ACM/ICPC补题:231226周赛

成绩回顾:

第一题:

题干:

AC代码:

#include <bits/stdc++.h>
#define endl '\n'
using namespace std;

void solve(){
	int n , x;
	cin >> n >> x;
	if(n == 1 or n == 2){
		cout << 1 << endl;
	}else{
		if((n -2) % x == 0){
			cout << ((n -2) /x )+1 << endl;
		}else{
			cout << ((n -2) /x )+2 << endl;
		}
	}
}

int main(void){
	ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
	int T;
	cin >> T;
	while(T--){
		solve();
	}
	return 0;
}

第二题:

题干:

AC代码:

#include <bits/stdc++.h>
using namespace std;
struct node {
	int a1;
	int a2;
	int a3;
	int a4;
};
void solve(){
	int n , m; 
	cin >> n >> m;
	vector<node> a(n);
	bool flag = false;
	for(int i = 0 ;i < n ; i++){
		cin >> a[i].a1 >> a[i].a2 >> a[i].a3 >> a[i].a4;
		if(a[i].a2 == a[i].a3){
			flag = true; 
		}
	}
	if(m % 2 != 0){
		flag = false;
	}
	if(flag){
		cout << "Yes\n";
	}else{
		cout << "No\n";
	}
}
int main(void){
	ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
	int T;
	cin >> T;
	while(T--){
		solve();
	}
	return 0;
}

第三题:

题干:

AC代码:

#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
const int N = 1e5+5;
#define int long long

void solve(){
	double n;
	cin >> n;
	if(n == 1){
		cout << 0 << endl;
	}
	else{
		int tmp = (sqrt((double)n));
		int res;
		if((( 1 + 1*(tmp - 1) ) + ( tmp - 1 ) *( 1 + 1*(tmp - 1) ) )>= n){
			res = tmp*2 - 2;
		}else if((( 1 + 1*(tmp - 1) ) + ( tmp) *( 1 + 1*(tmp - 1) ) )>= n){
			res = tmp*2 - 1;
		}else{
			res = tmp*2;
		}
		cout << res << endl;
	}
	
}
signed main(void){
	ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
	int T;
	cin >> T;
	while(T--){
		solve();
	}
	return 0;
}

第四题:

题干:

AC代码:

#include <bits/stdc++.h>
#define int long long
using namespace std;
const int N = 2e5 + 5;
set<int> a;
void solve(){
	int t;
	cin >> t;
	int res = 0;
	int sum = 0;
	a.insert(0);
	for(int i = 0; i < t ; i++){
		int tmp ; 
		cin >> tmp;
		sum += tmp;
		if(a.find(sum) != a.end()){
			res++;
            a.clear();
            a.insert(0);
            sum = tmp;
		}
		a.insert(sum);
	}
	cout << res;	
}
signed main(void){
	ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
	int T = 1;
//	cin >> T;
	while(T--){
		solve();
	}
	return 0;
}

第五题:

题干:

AC代码:

#include <bits/stdc++.h>
using namespace std;
struct node{
	int r;
	int s;
	int p;
};

void solve(){
	int n;
	cin >> n ;
	node a,b; 
	cin >> a.r >> a.s >> a.p;
	cin >> b.r >> b.s >> b.p;
	int nr = min(a.r,b.s);
	int ns = min(a.s,b.p);
	int np = min(a.p,b.r);
	int res2 =nr + ns + np;
		
	int sum = 0;
	sum += min(b.p + b.r , a.r);
	sum += min(b.s + b.p , a.p);	
	sum += min(b.r + b.s , a.s);
	int res1 = n - sum;
	cout << res1 << ' ' << res2;
		
}

int main(void){
	ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
	int T = 1;
//	cin >> T;
	while(T--){
		solve();
	}
	return 0;
}

第六题:

涉及DP博主还没学,留坑。
 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小岛上的恨雨寒

如有喜欢可随意支持

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值