首页 > TAG信息列表 > 1059

1059 小小粉刷匠 区间DP 涂色题

  链接:https://ac.nowcoder.com/acm/contest/24213/1059来源:牛客网 题目描述 "lalala,我是一个快乐的粉刷匠",小名一边快活地唱着歌,一边开心地刷着墙",兴致突然被打断,"小名,你今天如果刷不完这一栋楼的墙,那么你就等着被炒鱿鱼吧",老板声嘶力竭的吼着。

1059:求平均年龄

1059:求平均年龄 时间限制: 1000 ms         内存限制: 65536 KB 提交数: 95602     通过数: 54260 【题目描述】 班上有学生若干名,给出每名学生的年龄(整数),求班上所有学生的平均年龄,保留到小数点后两位。 【输入】 第一行有一个整数n(1<= n <= 100),表示学生的人数。其

zzulioj:1059: 最高分

题目描述 输入一批学生的成绩(整数),输出最高分。 输入 输入包含多个非负整数和一个负整数。该负数不作为有效成绩,只表示输入结束。 输出 输出一个整数,即最高分。单独占一行。 样例输入 Copy 7 6 5 9 2 -1 样例输出 Copy 9 #include<stdio.h> int main() { int n; int max=0;

1059 Prime Factors (25 分)

题目链接:https://pintia.cn/problem-sets/994805342720868352/problems/994805415005503488 #include<bits/stdc++.h> using namespace std; #define ll long long const int maxn=1e6+100; ll prime[maxn]; int num=0; int p[maxn]; void isprime() { for(int i=2; i

1059 C语言竞赛 (20 point(s))

// 10 #include <bits/stdc++.h> using namespace std; struct Stu{ int rank, existed; }; bool prime(int p){ for(int i = 2; i <= sqrt(p); i++) if(p % i == 0) return false; return true; } int main() { int n, k; map<string, Stu> stu

战略管理[1059]

一、影响战略选择的关键因素包括哪些因素 二、战略的形成是组织对环境的反应过程,环境与领导、组织共同构成战略形成的三大力量,并处于中心地位。请分析公共部门战略管理环境的特征。  三、请简述公共部门战略实施的过程。  四、价值观对于战略管理过程有何影响  五、公共部门借

B-1059 C语言竞赛 (20 分)

1059 C语言竞赛 (20 分) C 语言竞赛是浙江大学计算机学院主持的一个欢乐的竞赛。既然竞赛主旨是为了好玩,颁奖规则也就制定得很滑稽: 0、冠军将赢得一份“神秘大奖”(比如很巨大的一本学生研究论文集……)。1、排名为素数的学生将赢得最好的奖品 —— 小黄人玩偶!2、其他人将得到巧克

PTA basic 1059 C语言竞赛 (20 分) c++语言实现(g++)

C 语言竞赛是浙江大学计算机学院主持的一个欢乐的竞赛。既然竞赛主旨是为了好玩,颁奖规则也就制定得很滑稽: 0、冠军将赢得一份“神秘大奖”(比如很巨大的一本学生研究论文集……)。 1、排名为素数的学生将赢得最好的奖品 —— 小黄人玩偶! 2、其他人将得到巧克力。 给定比赛的最终排

信息学奥赛一本通(1059:求平均年龄)

1059:求平均年龄 时间限制: 1000 ms         内存限制: 65536 KB 提交数: 77571     通过数: 43127 【题目描述】 班上有学生若干名,给出每名学生的年龄(整数),求班上所有学生的平均年龄,保留到小数点后两位。 【输入】 第一行有一个整数n(1<= n <= 100),表示学生的人数。其

[CF Contest] 1059 A~C

A 我们可以发现一个性质,那就是奇数加奇数等于偶数,偶数加偶数等于偶数。然后因为偶数可以被二整除,所以有一个很自然的结论就是把奇数放一堆偶数放一堆,这样就可以使上镜的人数最多。 在这里我是用 vector 保存的,个人习惯而已。 #include <iostream> #include <cstdio> #include <alg

1059:求平均年龄

1059:求平均年龄 时间限制: 1000 ms 内存限制: 65536 KB 提交数: 74893 通过数: 41639 【题目描述】 班上有学生若干名,给出每名学生的年龄(整数),求班上所有学生的平均年龄,保留到小数点后两位。 【输入】 第一行有一个整数n(1<= n <= 100),表示学生的人数。其后n行每行有1个整数,表示

C++学习之路 | PTA乙级—— 1059 C语言竞赛 (20 分)(精简)

1059 C语言竞赛 (20 分) C 语言竞赛是浙江大学计算机学院主持的一个欢乐的竞赛。既然竞赛主旨是为了好玩,颁奖规则也就制定得很滑稽: 0、冠军将赢得一份“神秘大奖”(比如很巨大的一本学生研究论文集……)。 1、排名为素数的学生将赢得最好的奖品 —— 小黄人玩偶! 2、其他人将得

1059 Prime Factors (25 分)

1059 Prime Factors Given any positive integer N, you are supposed to find all of its prime factors, and write them in the format N = p​1​​​^k​1 ​​​​× p​2​​​^k​2​​​​ × ⋯ × p​m^​​​k​m​​​​. Input Specification: Each input file

1059 Prime Factors (25 分)

分解质因数裸题,注意对\(1\)特判下,为什么\(1\)还要分解质因数啊喂,迷惑行为-_-。 PII fac[10]; int n; int cnt; void divide(int n) { for(int i=2;i*i<=n;i++) if(n % i == 0) { fac[cnt].fi=i; while(n % i == 0) {

ZZULIOJ 1050~1059(oj入门题)

ZZULIOJ 1050~1059 ZZULIOJ 1050: 阶乘的累加和题目描述输入输出代码 ZZULIOJ 1051: 平方根的和题目描述输入输出代码 ZZULIOJ 1052: 数列求和4题目描述输入输出代码 ZZULIOJ 1053: 正弦函数题目描述输入输出代码 ZZULIOJ 1054: 猴子吃桃题目描述输入输出代码 ZZULIOJ 1055

PAT刷题——1059质因子分解

题目链接:https://pintia.cn/problem-sets/994805342720868352/problems/994805415005503488 059 Prime Factors (25分) Given any positive integer N, you are supposed to find all of its prime factors, and write them in the format N = p​1​​​k​1​​​​×p

1059.C语言竞赛-PAT乙级

C 语言竞赛是浙江大学计算机学院主持的一个欢乐的竞赛。既然竞赛主旨是为了好玩,颁奖规则也就制定得很滑稽: 0、冠军将赢得一份“神秘大奖”(比如很巨大的一本学生研究论文集……)。 1、排名为素数的学生将赢得最好的奖品 —— 小黄人玩偶! 2、其他人将得到巧克力。 给定比赛的最终

[LeetCode] 1059. All Paths from Source Lead to Destination

Given the edges of a directed graph, and two nodes source and destination of this graph, determine whether or not all paths starting from source eventually end at destination, that is: At least one path exists from the source node to the destinat

合并技术

996 13236 24505 36148 22334 33500 31287 26938 21161 21755 22334 33500 20973 979 1053 1044 1046 1054 993 1069 1052 1059 979 25129 20935 26865 37774 979 1053 1044 1046 1054 979 31287 26938 21161 23788 20960 957 997 13236 22438 39137 22334 33500 66239 37820

1059 Prime Factors (25分)

题目 Given any positive integer NNN, you are supposed to find all of its prime factors, and write them in the format N=p1k1×p2k2×⋯pmkmN = {p_1}^{k_1}\times {p_2}^{k_2}\times\cdots {p_m}^{k_m}N=p1​k1​×p2​k2​×⋯pm​km​. Input Specification: Each

CodeForces 1059 C.Sequence Transformation (思维)

C.Sequence Transformation Let’s call the following process a transformation of a sequence of length n. If the sequence is empty, the process ends. Otherwise, append the greatest common divisor (GCD) of all the elements of the sequence to the result and

BZOJ 1059. [ZJOI2007]矩阵游戏

  就是二分图匹配,直接匈牙利即可。 #include <bits/stdc++.h> const int N = 220; bool used[N]; int hascow[N], n, link[N][N]; bool find(int x) { for (int i = 1; i <= n; i++) { if (link[x][i] && !used[i]) { used[i] = 1;

【YCOJ 1059】最长上升子序列

1059 -- 最长上升子序列 Description 维护一个序列,使它可以进行下面两种操作:1.在末尾添加一个数字x2.将整个序列变成第x次操作后的样子在每次操作后,输出当前序列的最长上升子序列的长度序列初始时为空 Input 第一行有一个正整数n,表示操作个数。接下来n行每行有两个整数op

洛谷1059 明明的随机数

https://www.luogu.org/problem/P1059 #include<bits/stdc++.h>using namespace std;set<int>s;int a[105];int main() { int n; cin>>n; for(int i=0; i<n; i++) { cin>>a[i]; s.insert(a[i]); } cout<<s.si

数塔问题1059

求最小的路径 题目描述: 从数塔顶层出发,每个结点可以选择向左走或向右走,要求一直走到塔底,使得走过的路径上的数值和最小。 例如对于下面这样的数塔 1 2 34 5 6 按照 1 - 2 - 4 的路线走,可取得路径上的数值和的最小值为 7 输入描述: 每组输入的第一个行表示行数,最大不