An abandoned sentiment from past

本文介绍了一个Codeforces竞赛题目,该题目要求使用特定序列填补缺失值,并判断填充后的序列是否为非递增序列。通过分析给出的序列,文章提供了一种简单有效的解题策略。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Codeforces Round #418 (Div. 2) A.An abandoned sentiment from past

time limit per test : 1 second

题目描述
  A few years ago, Hitagi encountered a giant crab, who stole the whole of her body weight. Ever since, she tried to avoid contact with others, for fear that this secret might be noticed.

  To get rid of the oddity and recover her weight, a special integer sequence is needed. Hitagi’s sequence has been broken for a long time, but now Kaiki provides an opportunity.

  Hitagi’s sequence a has a length of n. Lost elements in it are denoted by zeros. Kaiki provides another sequence b, whose length k equals the number of lost elements in a (i.e. the number of zeros). Hitagi is to replace each zero in a with an element from b so that each element in b should be used exactly once. Hitagi knows, however, that, apart from 0, no integer occurs in a and b more than once in total.

  If the resulting sequence is not an increasing sequence, then it has the power to recover Hitagi from the oddity. You are to determine whether this is possible, or Kaiki’s sequence is just another fake. In other words, you should detect whether it is possible to replace each zero in a with an integer from b so that each integer from b is used exactly once, and the resulting sequence is not increasing.

Input
  The first line of input contains two space-separated positive integers n (2 ≤ n ≤ 100) and k (1 ≤ k ≤ n) — the lengths of sequence a and b respectively.

  The second line contains n space-separated integers a1, a2, …, an (0 ≤ ai ≤ 200) — Hitagi’s broken sequence with exactly k zero elements.

  The third line contains k space-separated integers b1, b2, …, bk (1 ≤ bi ≤ 200) — the elements to fill into Hitagi’s sequence.

  Input guarantees that apart from 0, no integer occurs in a and b more than once in total.

Output
  Output “Yes” if it’s possible to replace zeros in a with elements in b and make the resulting sequence not increasing, and “No” otherwise.

Examples
input
4 2
11 0 0 14
5 4
output
Yes
input
6 1
2 3 0 8 9 10
5
output
No
input
4 1
8 94 0 4
89
output
Yes
input
7 7
0 0 0 0 0 0 0
1 2 3 4 5 6 7
output
Yes

本题题意:

  本题题意是给你l两个序列a,b。用b中的数取代a序列中为0的数。如果能组成非递增序列,就输出Yes,否则输出No。

解题思路:

  如果a序列中0的个数大于1,那么我们可以让两个数递减取代,就一定可以组成非递增序列,所以我们分为两种情况来看。
  如果a中0的个数大于1,直接输出Yes。
  如果a中0的个数为1,就把b中的数填进去,判断是否为非递增序列即可。

注意:

  如果两个数相等,这不属于递增序列。

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <string.h>
using namespace std;
int main()
{
    int n,k;
    int a[150],b[150];
    while(scanf("%d%d",&n,&k)!=EOF)
    {
        int temp;
        for(int i=0; i<n; i++)
        {
            scanf("%d",&a[i]);
            if(a[i]==0)
                temp=i;
        }
        for(int j=0; j<k; j++)
        {
            scanf("%d",&b[j]);
        }
        if(k>1)
        {
            printf("Yes\n");
            continue;
        }
        else
        {
            a[temp]=b[0];
            int ans=-1;
            bool flag=true;
            for(int i=0; i<n; i++)
            {
                if(a[i]<=ans)
                    flag=false;
                ans=a[i];
            }
            if(flag)
                printf("No\n");
            else
                printf("Yes\n");
        }
    }
    return 0;
}
1. 用户与身体信息管理模块 用户信息管理: 注册登录:支持手机号 / 邮箱注册,密码加密存储,提供第三方快捷登录(模拟) 个人资料:记录基本信息(姓名、年龄、性别、身高、体重、职业) 健康目标:用户设置目标(如 “减重 5kg”“增肌”“维持健康”)及期望周期 身体状态跟踪: 体重记录:定期录入体重数据,生成体重变化曲线(折线图) 身体指标:记录 BMI(自动计算)、体脂率(可选)、基础代谢率(根据身高体重估算) 健康状况:用户可填写特殊情况(如糖尿病、过敏食物、素食偏好),系统据此调整推荐 2. 膳食记录与食物数据库模块 食物数据库: 基础信息:包含常见食物(如米饭、鸡蛋、牛肉)的名称、类别(主食 / 肉类 / 蔬菜等)、每份重量 营养成分:记录每 100g 食物的热量(kcal)、蛋白质、脂肪、碳水化合物、维生素、矿物质含量 数据库维护:管理员可添加新食物、更新营养数据,支持按名称 / 类别检索 膳食记录功能: 快速记录:用户选择食物、输入食用量(克 / 份),系统自动计算摄入的营养成分 餐次分类:按早餐 / 午餐 / 晚餐 / 加餐分类记录,支持上传餐食照片(可选) 批量操作:提供常见套餐模板(如 “三明治 + 牛奶”),一键添加到记录 历史记录:按日期查看过往膳食记录,支持编辑 / 删除错误记录 3. 营养分析模块 每日营养摄入分析: 核心指标计算:统计当日摄入的总热量、蛋白质 / 脂肪 / 碳水化合物占比(按每日推荐量对比) 微量营养素分析:检查维生素(如维生素 C、钙、铁)的摄入是否达标 平衡评估:生成 “营养平衡度” 评分(0-100 分),指出摄入过剩或不足的营养素 趋势分析: 周 / 月营养趋势:用折线图展示近 7 天 / 30 天的热量、三大营养素摄入变化 对比分析:将实际摄入与推荐量对比(如 “蛋白质摄入仅达到推荐量的 70%”) 目标达成率:针对健
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值