• C. Coconut(2017 ACM-ICPC 亚洲区(乌鲁木齐赛区)网络赛)


    额,只是一道签到题,emmm直接代码:

     1 #include <cstdio>
     2 #include <cstring>
     3 #include <algorithm>
     4 using namespace std;
     5 
     6 const int maxn = 1005;
     7 int c[maxn];
     8 int d[maxn];
     9 
    10 int main(){
    11     int t;
    12     scanf("%d", &t);
    13     while (t--){
    14         int n, m;
    15         scanf("%d %d", &n, &m);
    16         for (int i = 0; i < n; i++){
    17             scanf("%d", &c[i]);
    18         }
    19         for (int i = 0; i < n - 1; i++){
    20             scanf("%d", &d[i]);
    21         }
    22         d[n-1] = 0;
    23         int ans = 0;
    24         int i;
    25         for (i = 0; i < n; i++){
    26             ans = ans + c[i] - m*d[i];
    27             if (ans < 0)
    28                 break;
    29         }
    30         if (i == n)
    31             printf("Yes
    ");
    32         else 
    33             printf("No
    ");
    34     }
    35     //system("pause");
    36     return 0;
    37 }
  • 相关阅读:
    108.将有序数组转换成二叉搜索树
    剑指Offer 09.用两个栈实现队列
    215.数组中的第K个最大元素
    AcWing 845.八数码
    1.两数之和
    迷宫问题
    倒计时
    Redis 红包
    Redis
    EF Api 全套
  • 原文地址:https://www.cnblogs.com/ouyang_wsgwz/p/7512233.html
Copyright © 2020-2023  润新知