2019 The 19th Zhejiang University Programming Contest

感想:

  今天三个人的状态比昨天计院校赛的状态要好很多,然而三个人都慢热体质导致签到题wa了很多发。最后虽然跟大家题数一样(6题),然而输在罚时。

  只能说,水题还是刷得少,看到签到都没灵感实在不应该。

 


 

题目链接:http://acm.zju.edu.cn/onlinejudge/showContestProblems.do?contestId=391

 

  A:简单贪心,按高度sort一下就好了,这里用优先队列处理

 1 #include <cstdio>
 2 #include <queue>
 3 #include <algorithm>
 4 #include <functional>
 5 
 6 using namespace std;
 7 
 8 int M[100005], F[100006];
 9 
10 int main(void)
11 {
12     int T;
13     while (scanf("%d", &T) != EOF)
14     {
15         while (T--)
16         {
17             int n, m;
18             priority_queue <int, vector<int>, greater <int>> fu, fd, mu, md;
19             scanf("%d %d", &n, &m);
20             for (int i = 0; i < n; i++)
21             {
22                 scanf("%d", &M[i]);
23             }
24             for (int i = 0; i < m; i++)
25             {
26                 scanf("%d", &F[i]);
27             }
28             for (int i = 0; i < n; i++)
29             {
30                 int flag;
31                 scanf("%d", &flag);
32                 if (flag)
33                 {
34                     mu.push(M[i]);
35                 }
36                 else
37                 {
38                     md.push(M[i]);
39                 }
40             }
41             for (int i = 0; i < m; i++)
42             {
43                 int flag;
44                 scanf("%d", &flag);
45                 if (flag)
46                 {
47                     fu.push(F[i]);
48                 }
49                 else
50                 {
51                     fd.push(F[i]);
52                 }
53             }
54             int ans = 0;
55             // fu <-> md
56             while (!fu.empty() && !md.empty())
57             {
58                 if (fu.top() < md.top())
59                 {
60 //                  printf("pop: %d %d\n", fu.top(), md.top());
61                     fu.pop();
62                     md.pop();
63                     ans++;
64                 }
65                 else
66                 {
67 //                  printf("pop: %d\n", md.top());
68                     md.pop();
69                 }
70             }
71             // fd <-> mu
72             while (!mu.empty() && !fd.empty())
73             {
74                 if (mu.top() < fd.top())
75                 {
76 //                  printf("pop: %d %d\n", mu.top(), fd.top());
77                     mu.pop();
78                     fd.pop();
79                     ans++;
80                 }
81                 else
82                 {
83 //                  printf("pop: %d\n", fd.top());
84                     fd.pop();
85                 }
86             }
87             printf("%d\n", ans);
88         }
89     }
90     return 0;
91 }
View Code

  B:找规律,显然是不停把n除二加起来,高精就用java

 1 import java.util.*;
 2 import java.lang.*;
 3 import java.math.BigInteger;
 4 
 5 public class Main {
 6 
 7     public static void main(String[] args) {
 8         Scanner cin=new Scanner(System.in);
 9         while (cin.hasNextInt())
10         {
11             int t=cin.nextInt();
12             while (t-->0){
13                 BigInteger ans=BigInteger.ZERO;
14                 BigInteger x=cin.nextBigInteger();
15                 while (!x.equals(BigInteger.ONE)){
16                     x=x.divide(BigInteger.valueOf(2));
17                     ans=ans.add(x);
18                 }
19                 System.out.println(ans);
20             }
21         }
22     }
23 }
View Code

  C:模拟

  1 #include <cstdio>
  2 
  3 char t[2002][2002];
  4 bool vis[2002][2002];
  5 
  6 const int p3[] = {1, 3, 9, 27, 81, 243};
  7 
  8 const int movement[4][2] =
  9 {
 10     {1, 0}, // DOWN
 11     {0, 1},  // RIGHT
 12     {-1, 0}, // UP
 13     {0, -1} // LEFT
 14 };
 15 
 16 void init(int n, int m)
 17 {
 18     for (int i = 0; i < n; i++)
 19     {
 20         for (int j = 0; j < m; j++)
 21         {
 22             vis[i][j] = false;
 23         }
 24     }
 25 }
 26 
 27 int solve(void)
 28 {
 29     int ans = 0;
 30     int n, m;
 31     int a, b;
 32     long long int k;
 33     scanf("%d %d", &n, &m);
 34     scanf("%d %d %lld", &a, &b, &k);
 35     a--;
 36     b--;
 37     char cmd[300];
 38     scanf(" %s", cmd);
 39     init(n, m);
 40     for (int i = 0; i < n; i++)
 41     {
 42         scanf(" %s", t[i]);
 43         for (int j = 0; j < m; j++)
 44         {
 45             t[i][j] -= '0';
 46         }
 47     }
 48     while (k--)
 49     {
 50         int x = p3[4] * t[a][b]
 51                 + p3[3] * t[a - 1][b]
 52                 + p3[2] * t[a + 1][b]
 53                 + p3[1] * t[a][b - 1]
 54                 + p3[0] * t[a][b + 1];
 55         if (vis[a][b])
 56         {
 57             return ans;
 58         }
 59         vis[a][b] = true;
 60         if (cmd[x] == 'D')
 61         {
 62             int na = a + movement[0][0], nb = b + movement[0][1];
 63             if (t[na][nb] == 1) return ans;
 64             else a = na, b = nb;
 65         }
 66         else if (cmd[x] == 'R')
 67         {
 68             int na = a + movement[1][0], nb = b + movement[1][1];
 69             if (t[na][nb] == 1) return ans;
 70             else a = na, b = nb;
 71         }
 72         else if (cmd[x] == 'U')
 73         {
 74             int na = a + movement[2][0], nb = b + movement[2][1];
 75             if (t[na][nb] == 1) return ans;
 76             else a = na, b = nb;
 77         }
 78         else if (cmd[x] == 'L')
 79         {
 80             int na = a + movement[3][0], nb = b + movement[3][1];
 81             if (t[na][nb] == 1) return ans;
 82             else a = na, b = nb;
 83         }
 84         else if (cmd[x] == 'P')
 85         {
 86             if (t[a][b] == 2)
 87             {
 88                 t[a][b] = 0;
 89                 ans++;
 90                 init(n, m);
 91             }
 92         }
 93         else if (cmd[x] == 'I')
 94         {
 95             return ans;
 96         }
 97     }
 98     return ans;
 99 }
100 
101 int main(void)
102 {
103     int T;
104     while (scanf("%d", &T) != EOF)
105     {
106         while (T--)
107         {
108             printf("%d\n", solve());
109         }
110     }
111     return 0;
112 }
View Code

  D:上一题的人工智能版,要你构造特定程序捡垃圾。方法是走回字形,比如我们选定顺时针方向走,那么当我们走到左边靠墙位置的时候,如果右手边有垃圾,那么我们往右走一格再继续往上走。如果走到地图中间位置(四周没垃圾)就往上走。如果机器人走了连续相同方向n次就让机器人“抖动”一下(属实人工智能调参)。然而cy他们队就是A了(神仙啊

  E:从右往左扫一次就好了,队友没开LL导致wa一发要批评

 1 #include <cstdio>
 2 
 3 long long int a[200], b[200];
 4 
 5 int main(void)
 6 {
 7     int T;
 8     while (scanf("%d", &T) != EOF)
 9     {
10         while (T--)
11         {
12             int n;
13             scanf("%d", &n);
14             for (int i = 0; i < n; i++)
15             {
16                 scanf("%lld", &a[i]);
17             }
18             for (int i = 0; i < n; i++)
19             {
20                 scanf("%lld", &b[i]);
21             }
22             bool flag = true;
23             for (int i = n - 1; i >= 0; i--)
24             {
25                 if (b[i] >= a[i])
26                 {
27                     if (i)
28                     {
29                         b[i - 1] += b[i] - a[i];
30                     }
31                 }
32                 else
33                 {
34                     flag = false;
35                     break;
36                 }
37             }
38             printf(flag ? "Yes\n" : "No\n");
39         }
40     }
41     return 0;
42 }
View Code

  F:神仙题

  G:非常简单的贪心

 1 #include <cstdio>
 2 #include <queue>
 3 #include <algorithm>
 4 #include <functional>
 5 
 6 using namespace std;
 7 
 8 int M[100005], F[100006];
 9 
10 int main(void)
11 {
12     int T;
13     while (scanf("%d", &T) != EOF)
14     {
15         while (T--)
16         {
17             int n, k;
18             scanf("%d %d", &n, &k);
19             priority_queue <long long int> pos, neg;
20             for (int i = 0; i < n; i++)
21             {
22                 int tmp;
23                 scanf("%d", &tmp);
24                 if (tmp > 0)
25                 {
26                     pos.push(tmp);
27                 }
28                 else
29                 {
30                     neg.push(-tmp);
31                 }
32             }
33             long long int ans = 0, maxn = 0;
34             while (!pos.empty())
35             {
36                 ans += 2 * pos.top();
37                 maxn = max(pos.top(), maxn);
38                 int cnt = k - 1;
39                 pos.pop();
40                 while (cnt-- && !pos.empty())
41                 {
42                     pos.pop();
43                 }
44             }
45             while (!neg.empty())
46             {
47                 ans += 2 * neg.top();
48                 maxn = max(neg.top(), maxn);
49                 int cnt = k - 1;
50                 neg.pop();
51                 while (cnt-- && !neg.empty())
52                 {
53                     neg.pop();
54                 }
55             }
56             printf("%lld\n", ans - maxn);
57         }
58     }
59     return 0;
60 }
View Code

  H:救公主,边双相关的题目(然而队友最后没撸出来)

   I:要求逆元的看不懂的题目

  J:签到(wa了7次,三个人都没睡醒。这里我马上想到了可以输出n×2和n×3,然而忘记特判n==1的情况……)

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstdlib>
 4 
 5 using namespace std;
 6 
 7 typedef long long ll;
 8 
 9 ll read()
10 {
11     ll x = 0; char c = getchar(); ll flag = 1;
12     while (c < '0' || c > '9')
13     {
14         if (c == '-')
15         {
16             flag = -1;
17         }
18         c = getchar();
19     }
20     while (c >= '0' && c <= '9')x = x * 10ll + c - '0', c = getchar();
21     return x;
22 }
23 
24 int main()
25 {
26     ll T;
27     while (scanf("%lld", &T) == 1)
28     {
29         while (T--)
30         {
31             ll x;
32             x = read();
33             if (x % 2 == 0)
34             {
35                 printf("4 %lld\n", 4 + x);
36             }
37             else
38             {
39                 printf("15 %lld\n", 15 + x);
40             }
41         }
42     }
43 
44     return 0;
45 }
View Code

 

转载于:https://www.cnblogs.com/JHSeng/p/10706568.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/364892.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

openvas安装和基本使用

OpenVAS是开放式漏洞评估系统&#xff0c;也可以说它是一个包含着相关工具的网络扫描器。OpenVAS是开放式漏洞评估系统&#xff0c;也可以说它是一个包含着相关工具的网络扫描器。其核心部件是一个服务器&#xff0c;包括一套网络漏洞测试程序&#xff0c;可以检测远程系统和应…

修改mysql编码方式centos_CentOS下修改mysql数据库编码为UTF-8(附mysql开启远程链接和开放3306端口)...

楼主在配置好linux云服务器的jdk,tomcat,mysql后&#xff0c;当要开始部署项目是&#xff0c;忽然意识到一个很严重的问题&#xff0c;那就是数据库的编码问题&#xff0c;自安装完成后并未修改数据库的额编码。。。。下面就来讲说linux下修改mysql的编码问题吧。。有一个问题网…

srtvlet filter

Filter&#xff0c;过滤器&#xff0c;顾名思义&#xff0c;即是对数据等的过滤&#xff0c;预处理过程。为什么要引入过滤器呢&#xff1f;在平常访问网站的时候&#xff0c;有时候发一些敏感的信息&#xff0c;发出后显示时 就会将敏感信息用*等字符替代&#xff0c;这就是用…

mysql怎么合并行_mysql怎么合并行

mysql合并行的方法&#xff1a;使用函数【GROUP_CONCAT()】&#xff0c;代码为【SELECT am.activeId,GROUP_CONCAT(m.modelName SEPARATOR ‘,’) modelName】。【相关学习推荐&#xff1a;mysql学习】mysql合并行的方法&#xff1a;一个字段可能对应多条数据&#xff0c;用mys…

将旧项目从Ant迁移到Maven的4个简单步骤

一段时间以来&#xff0c;我们一直在考虑将构建从蚂蚁移植到Maven。 它发生在上个月&#xff0c;实际上比我们预期的要简单。 根据我的经验&#xff0c;这里简要介绍了我们遵循的步骤。 我们的应用程序是一个具有多个框架和技术的企业Web应用程序构建&#xff0c;并作为单个WAR…

折腾Java设计模式之建造者模式

博文原址&#xff1a;折腾Java设计模式之建造者模式 建造者模式 Separate the construction of a complex object from its representation, allowing the same construction process to create various representations. 将复杂对象的构造与其表现分离&#xff0c;允许相同的构…

python小甲鱼练习题答案_小甲鱼Python第 013讲元组:戴上了枷锁的列表 | 课后测试题及参考答案...

测试题&#xff1a;0. 请用一句话描述什么是列表&#xff1f;再用一句话描述什么是元组&#xff1f;列表&#xff1a;一个大仓库&#xff0c;可以随时往里面添加和删除任何东西。元祖&#xff1a;封闭的列表&#xff0c;一旦定义&#xff0c;就不可改变(不能添加、删除或修改)1…

Vue--- 一点车项目

一点车项目 cli脚手架 组件化 数据交互路由指向存入数据库 前端页面 cli脚手架的安装与搭建 创建对应包 页面组件化编辑 &#xff08;共享组件&#xff1a;摘取出来一模一样的组件重用&#xff09;&#xff08;私有组件:在自己的组件写入 引入共享组件&#xff09; 数据交…

设计模式:模式或反模式,这就是问题

我最近遇到了Wiki页面“ Anti-pattern” &#xff0c;其中包含详尽的反模式列表。 其中一些对我来说很明显。 他们中的一些让我想了一下&#xff0c;其他的让我想了更多。 然后&#xff0c;我开始在页面上查找反模式“ singleton”&#xff0c;但找不到。 &#xff08;文本搜索…

Redis的散列类型

Redis是采用字典结构以key-value的形式存储数据的&#xff0c;在散列类型&#xff08;所谓的hash&#xff09;中的value也是一种字典结构。如果用关系表结构去理解&#xff0c;就是key为对象&#xff0c;value是属性和属性值。如下图&#xff1a; 所以使用散列&#xff08;hash…

easy html css tree 简单的HTML css导航树

code: show: 更多专业前端知识&#xff0c;请上 【猿2048】www.mk2048.com

Java实现并发线程中线程范围内共享数据

---恢复内容开始--- 利用Map&#xff0c;HashMap键值对的数据结构&#xff0c;实现并发线程中线程范围内数据共享。 package cn.qy.heima2;import java.util.HashMap; import java.util.Map; import java.util.Random;public class ThreadScopeShareData {private static int …

18.11.16-高等数学-曲率计算

11.16 转载于:https://www.cnblogs.com/coder211/p/10005502.html

springboot干什么的_Spring Boot 项目的这些文件都是干啥用的?

上一讲我们用官网包或者 IDE 工具&#xff0c;快速构建了 Spring Boot 应用&#xff0c;并且看到了第一个程序的运行结果&#xff1a;Hello World&#xff01;本文我们了解下 Spring Boot 的目录结构&#xff0c;了解一个事物&#xff0c;清楚了它的结构&#xff0c;明白了内部…

微信小程序开发——点击按钮退出小程序的实现

微信小程序官方是没有提供退出的API的&#xff0c;但是在navigator这个组件中&#xff0c;是有退出这个功能的&#xff1a; 详情参考官方文档&#xff1a;navigator。 示例代码&#xff1a; 1 <navigator open-type"exit" target"miniProgram">关闭小…

使用RequestHandlerRetryAdvice重试Web服务操作

1.引言 有时在调用Web服务时&#xff0c;我们可能有兴趣在发生错误的情况下重试该操作。 使用Spring Integration时&#xff0c;我们可以使用RequestHandlerRetryAdvice类实现此功能。 此类将使我们在放弃并引发异常之前重试指定次数的操作。 这篇文章将向您展示如何完成此任务…

ASP.NET MVC如何做一个简单的非法登录拦截

摘要&#xff1a;做网站的时候&#xff0c;经常碰到这种问题&#xff0c;一个没登录的用户&#xff0c;却可以通过localhost:23244/Main/Index的方式进入到网站的内部&#xff0c;查看网站的信息。我们知道&#xff0c;这是极不安全的&#xff0c;那么如何对这样的操作进行拦截…

无法创建java虚拟机_创建java虚拟机失败的解决方法

创建java虚拟机失败的解决方法解决问题的步骤&#xff1a;1、从eclipse文件夹中打开eclipse.ini文件2、修改–launcher.XXMaxPermSize属性3、将值改为512m即可配置文件格式&#xff1a;-startupplugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar--launcher.libra…

java 泛型嵌套泛型_Java泛型嵌套

package com.study.generics;//泛型的嵌套使用public class GenericsDemo06 {public static void main(String []args) {GenericsComputer computer new GenericsComputer("联想笔记本电脑","联想");GenericsPeople people new GenericsPeople(computer)…

[18/11/24]类和对象

1、类和对象 类可以看做是一个模版&#xff0c;或者图纸&#xff0c;系统根据类的定义来造出对象。我们要造一个汽车&#xff0c;怎么样造?类就是这个图纸&#xff0c;规定了汽车的详细信息&#xff0c;然后根据图纸将汽车造出来。 类&#xff1a;class。 对象&#xff1a;Obj…