Contest - 2014 SWJTU ACM 手速测试赛(2014.10.31)

题目列表:

2146 Problem A【手速】阔绰的Dim
2147 Problem B【手速】颓废的Dim
2148 Problem C【手速】我的滑板鞋
2149 Problem D【手速】潦倒的Dim
2150 Problem E【手速】被NTR的Dim

 


 2146 Problem A:

简单的最长回文串统计算法,这里没有过高要求,n^2算法可以AC。其中包括dp动规以及中心法(以上两种都是O(n^2)算法,可以参考白书)。推广,可以尝试扩展KMP(O(nlogn))或者Manacher算法(O(n))。可以查阅相关资料自行选择学习。这里给出中心法。

 

 1 /****************************************/
 2 /*****            Desgard_Duan        *****/
 3 /****************************************/
 4 //#pragma comment(linker, "/STACK:102400000,102400000")
 5 #define _CRT_SECURE_NO_WARNINGS
 6 #include <iostream>
 7 #include <cstdio>
 8 #include <cstdlib>
 9 #include <cstring>
10 #include <string>
11 #include <algorithm>
12 #include <stack>
13 #include <map>
14 #include <queue>
15 #include <vector>
16 #include <set>
17 #include <functional>
18 #include <cmath>
19 #include <numeric>
20 
21 using namespace std;
22 
23 char s[500]; int len;
24 
25 inline void get_val(int &a) {
26     int value = 0, s = 1;
27     char c;
28     while ((c = getchar()) == ' ' || c == '\n');
29     if (c == '-') s = -s; else value = c - 48;
30     while ((c = getchar()) >= '0' && c <= '9')
31         value = value * 10 + c - 48;
32     a = s * value;
33 }
34 
35 int tofind(int h, int t) {
36     int re = t - h + 1;
37     while (h < t) {
38         if (s[h++] != s[t--]) return 0;
39     }
40     return re;
41 }
42 
43 int main() {
44     //freopen("huiwen.in", "r", stdin);
45     //freopen("huiwen.out","w",stdout);
46     int T;
47     cin >> T;
48     while (T--) {
49         scanf("%s", s);
50         len = strlen(s);
51         int ans = 1;
52         for (int i = 0; i < len - 1; i++)
53             for (int j = i + 1; j < len; j++) {
54                 ans = max(ans, tofind(i, j));
55             }
56         cout << ans << endl;
57     }
58     return 0;
59 }

 

 

2147 Problem B:

一道字符串水题,只要按位置遍历一遍即可。C语言基础题。

 1 /****************************************/
 2 /*****            Desgard_Duan        *****/
 3 /****************************************/
 4 //#pragma comment(linker, "/STACK:102400000,102400000")
 5 #define _CRT_SECURE_NO_WARNINGS
 6 #include <iostream>
 7 #include <cstdio>
 8 #include <cstdlib>
 9 #include <cstring>
10 #include <string>
11 #include <algorithm>
12 #include <stack>
13 #include <map>
14 #include <queue>
15 #include <vector>
16 #include <set>
17 #include <functional>
18 #include <cmath>
19 #include <numeric>
20 
21 using namespace std;
22 
23 inline void get_val(int &a) {
24     int value = 0, s = 1;
25     char c;
26     while ((c = getchar()) == ' ' || c == '\n');
27     if (c == '-') s = -s;
28     else value = c - 48;
29     while ((c = getchar()) >= '0' && c <= '9')
30         value = value * 10 + c - 48;
31     a = s * value;
32 }
33 
34 string str1, str2;
35 int main () {
36     int T;
37     //cin >> T;
38     while (cin >> str1 >> str2) {
39 
40         int ans = 0;
41         for (int i = 0 ; i < str1.size(); ++ i) {
42             if (str1[i] == str2[i]) {
43                 ans ++;
44             }
45         }
46         cout << ans << endl;
47     }
48     return 0;
49 }

 

2148 Problem C:

一道贪心的白书例题,类型归类为查找不相交区间的最大个数。具体思路:对于相交的任意两个区间分为两种情况(图A、图B)。若出现情况A,直接将大区间删除即可。若出现情况B,我们先将集合按照x进行升序排列,然后优先选取x最小的情况B中的区间,这样可以得到最佳的方案。

 1 /****************************************/
 2 /*****            Desgard_Duan        *****/
 3 /****************************************/
 4 //#pragma comment(linker, "/STACK:102400000,102400000")
 5 #define _CRT_SECURE_NO_WARNINGS
 6 #include <iostream>
 7 #include <cstdio>
 8 #include <cstdlib>
 9 #include <cstring>
10 #include <string>
11 #include <algorithm>
12 #include <stack>
13 #include <map>
14 #include <queue>
15 #include <vector>
16 #include <set>
17 #include <functional>
18 #include <cmath>
19 #include <numeric>
20 
21 using namespace std;
22 
23 inline void get_val(int &a) {
24     int value = 0, s = 1;
25     char c;
26     while ((c = getchar()) == ' ' || c == '\n');
27     if (c == '-') s = -s;
28     else value = c - 48;
29     while ((c = getchar()) >= '0' && c <= '9')
30         value = value * 10 + c - 48;
31     a = s * value;
32 }
33 
34 vector<pair<int, int> > shoes;
35 bool flag[1005];
36 
37 int main () {
38     int n, x, y;
39     //freopen("out.txt", "w", stdout);
40     while (~scanf ("%d", &n)) {
41         shoes.clear();
42         for (int i = 0; i < n; ++ i) {
43             cin >> x >> y;
44             shoes.push_back (make_pair(x, y));
45         }
46         sort (shoes.begin(), shoes.end());
47 
48         memset (flag, 0, sizeof (flag));
49         for (int i = 0; i < n; ++ i) {
50             if (flag[i]) {
51                 continue;
52             }
53             for (int j = 0; j < n; ++ j) {
54                 if (i == j) continue;
55                 else {
56                     if (shoes[i].first <= shoes[j].first && shoes[i].second >= shoes[j].second) {
57                         flag[i] = 1;
58                     }
59                 }
60             }
61         }
62         int cur = 0, ans = 1;
63         for (; cur < shoes.size() && flag[cur]; cur ++);
64         int last_end = shoes[cur].second, this_begin;
65         for (int i = cur + 1; i < shoes.size(); ++ i) {
66             if (flag[i]) continue;
67             this_begin = shoes[i].first;
68             if (last_end <= this_begin) {
69                 ans ++;
70                 last_end = shoes[i].second;
71             }
72         }
73         cout << ans << endl;
74 
75     }
76     return 0;
77 }

 

2149 Problem D:

一道大数题目。在n个大数中寻找最小的数。大数推荐使用Java大数类,相对来说代码比较清晰。也可以直接开一个数组进行模拟。

 

 1 import java.math.*;
 2 import java.io.*;
 3 import java.util.*;
 4 
 5 public class Main {
 6     public static void main(String args[]) {
 7         Scanner in = new Scanner(System.in);
 8         while (in.hasNext()) {
 9             int n = in.nextInt();
10             BigInteger ans = BigInteger.ZERO;
11             for (int i = 0; i < n; ++i) {
12                 BigInteger a = in.nextBigInteger();
13                 if (i == 0) {
14                     ans = a;
15                 } else {
16                     ans = ans.min(a);
17                 }
18             }
19             System.out.println (ans);
20         }
21     }
22 }

 

 

2150 Problem E:

一道简单的数学题目。稍微推导一下就会发现这个函数最多只有六项。分别是a, b, b - a, -a, -b, a - b六个数,只要我们去一下重复的数即可。去重方法可以用一个字符串数组来做,这里用了set容器的性质进行了去重操作。

 1 /****************************************/
 2 /*****            Desgard_Duan        *****/
 3 /****************************************/
 4 //#pragma comment(linker, "/STACK:102400000,102400000")
 5 #define _CRT_SECURE_NO_WARNINGS
 6 #include <iostream>
 7 #include <cstdio>
 8 #include <cstdlib>
 9 #include <cstring>
10 #include <string>
11 #include <algorithm>
12 #include <stack>
13 #include <map>
14 #include <queue>
15 #include <vector>
16 #include <set>
17 #include <functional>
18 #include <cmath>
19 #include <numeric>
20 
21 using namespace std;
22 
23 inline void get_val(int &a) {
24     int value = 0, s = 1;
25     char c;
26     while ((c = getchar()) == ' ' || c == '\n');
27     if (c == '-') s = -s;
28     else value = c - 48;
29     while ((c = getchar()) >= '0' && c <= '9')
30         value = value * 10 + c - 48;
31     a = s * value;
32 }
33 
34 
35 int a, b, n;
36 set<int> S;
37 int main () {
38     while (cin >> a >> b >> n) {
39         S.clear();
40         if (n >= 6) {
41             S.insert (a);
42             S.insert (b);
43             S.insert (b - a);
44             S.insert (-a);
45             S.insert (-b);
46             S.insert (a - b);
47             cout << S.size() << endl;
48             continue;
49         } else {
50             int last = a, now = b, t;
51             S.insert (a);
52             S.insert (b);
53             for (int i = 3; i <= n; ++ i) {
54                 S.insert (now - last);
55                 t = now;
56                 now = now - last;
57                 last = t;
58             }
59             cout << S.size() << endl;
60         }
61     }
62     return 0;
63 }

 

 


最后,感谢这次的命题者:王浩宇(stdiohero),叶鹏(yeahpeng),王驰(wid),谢文亮(Dim),朱吴帅(JM)同学为我们出的这套热身题目。祝大家在参赛后有所提高。谢谢大家。

——Desgard_Duan

2014.10.31

转载于:https://www.cnblogs.com/Destiny-Gem/p/4065932.html

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

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

相关文章

DFS应用——遍历有向图+判断有向图是否有圈

【0】README 0.1&#xff09; 本文总结于 数据结构与算法分析&#xff0c; 源代码均为原创&#xff0c; 旨在 理解 “DFS应用——遍历有向图判断有向图是否有圈” 的idea 并用源代码加以实现 &#xff1b;0.2&#xff09; 判断有向图是否有圈的rule—— 一个有向图是无圈图当且…

AbleCloud智能行业解决方案助力体重秤企业向“中国智造”转变

近年来&#xff0c;体重秤消费群体的年龄层次与需求逐渐向多元化发展&#xff0c;品牌众多、竞争激烈的传统体重秤行业迎来了前所未有的挑战——智能体重秤成为行业发展的大趋势&#xff0c;功能单一、同质化严重已经成为阻碍传统体重秤企业成长的桎梏&#xff0c;打造出具备“…

javaScript事件(一)事件流

一、事件 事件是文档或者浏览器窗口中发生的&#xff0c;特定的交互瞬间。 事件是用户或浏览器自身执行的某种动作&#xff0c;如click,load和mouseover都是事件的名字。 事件是javaScript和DOM之间交互的桥梁。 你若触发&#xff0c;我便执行——事件发生&#xff0c;调用它的…

php输入对话框,如何使用JavaScript实现输入对话框

我们有时在网页上进行注册用户信息时会出现弹窗进行提示&#xff0c;你需要输入内容进行确认&#xff0c;那么&#xff0c;这样的输入对话框是怎么实现的呢&#xff1f;本篇文章就来介绍关于使用JavaScript实现输入对话框的方法。我们可以使用prompt显示输入对话框要在JavaScri…

CodeVS 1081 线段树练习 2

1081 线段树练习 2 时间限制: 1 s空间限制: 128000 KB题目等级 : 大师 Master题目描述 Description给你N个数&#xff0c;有两种操作 1&#xff1a;给区间[a,b]的所有数都增加X 2&#xff1a;询问第i个数是什么&#xff1f; 输入描述 Input Description第一行一个正整数n&#…

iOS开发UI篇—九宫格坐标计算

iOS开发UI篇—九宫格坐标计算 一、要求 完成下面的布局 二、分析 寻找左边的规律&#xff0c;每一个uiview的x坐标和y坐标。 三、实现思路 (1)明确每一块用得是什么view (2)明确每个view之间的父子关系&#xff0c;每个视图都只有一个父视图&#xff0c;拥有很多的子视图。 (3)…

工业4.0时代企业如何用CRM实现模式变革

当前&#xff0c;全球经济正处于变革的巨大浪潮之中&#xff0c;对于制造业来说&#xff0c;德国提出工业4.0&#xff0c;美国提出工业互联网&#xff0c;而我国&#xff0c;正在大力推进“中国制造2025”。制造业实现转型升级势在必行。我国政府提出&#xff0c;要大力支持传统…

Nginx 反向代理 websocket 协议

为什么80%的码农都做不了架构师&#xff1f;>>> 主要配置内容 server {listen 80;server_name xxx.xxx.xxx;location / {try_files $uri $uri/ /index.html;root /workspace/www;index index.html index.htm;}location ^~/letchat/ {proxy_pass http:/…

oracle中区间大小,Oracle的逻辑结构(表空间、段、区间、块)——总结

Oracle逻辑结构全景结构图以下为个人整理的一些关于Oracle逻辑结构的相关数据字典&#xff1a;SELECT * FROMDBA_TABLESPACES--记录各个表空间的详细信息SELECT * FROMDBA_TABLESPACE_USAGE_METRICS--记录各个表空间的使用状况SELECT * FROMDBA_DATA_FILES --记录各个数据文件的…

[C++] Nested Radical Constant

做高数助教被天煞的大一学生坑了&#xff0c;发现是个未解问题&#xff0c;没有解析解。。 用C搞了下&#xff0c;就是这样。。。 No closed-form expression is known for this constant (Finch 2003, p. 8; S. Plouffe, pers. comm., Aug. 29, 2008). /*********************…

api-gateway实践(03)新服务网关 - 网关请求拦截检查

参考链接&#xff1a;http://www.cnblogs.com/jivi/archive/2013/03/10/2952829.html 一、为什么要拦截检查请求&#xff1f; 防止重放攻击、篡改重放&#xff0c;进行使用规格检查 1、请求可能是重放攻击 重放攻击的基本原理就是把以前窃听到的数据原封不动地重新发送给接收方…

转载-使用 Feed4JUnit 进行数据与代码分离的 Java 单元测试

JUnit 是被广泛应用的 Java 单元测试框架&#xff0c;但是它没有很好的提供参数化测试的支持&#xff0c;很多测试人员不得不把测试数据写在程序里或者通过其它方法实现数据与代码的分离&#xff0c;在后续的修改和维护上有诸多限制和不便。Feed4JUnit 是开源的基于 JUnit 的扩…

dp递推 hdu1978

How many ways Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 5422 Accepted Submission(s): 3185 Problem Description这是一个简单的生存游戏&#xff0c;你控制一个机器人从一个棋盘的起始点(1,1)走到棋盘的…

glTF格式初步了解

glTF格式初步了解近期看到Qt 3D的进展。偶然了解到了一种新的格式&#xff1a;glTF格式。这样的格式据说比现有的3D格式更加符合OpenGL应用的须要。这引起了我的好奇。于是我在Qt 3D的外部链接中找到了有关glTF的相关链接。上海萌梦信息科技有限公司&#xff08;微博&#xff1…

【第二十七章】 springboot + zipkin(brave-okhttp实现)

本文截取自&#xff1a;http://blog.csdn.net/liaokailin/article/details/52077620 一、前提 1、zipkin基本知识&#xff1a;附8 zipkin 2、启动zipkin server&#xff1a; 2.1、在官网下载服务jar&#xff0c;http://zipkin.io/pages/quickstart.html&#xff0c;之后使用命令…

oracle在线sql数据库设计,一款在线ER模型设计工具,支持MySQL、SQLServer、Oracle、Postgresql...

在线QQ客服&#xff1a;1922638专业的SQL Server、MySQL数据库同步软件介绍一个在线ER模型生成工具&#xff0c;该工具可以在线为多个数据库的DDL文件生成ER模型图&#xff0c;并支持MySQL&#xff0c;SQLServer&#xff0c;Oracle&#xff0c;PostgreSQL和其他数据库。主要功能…

_M_invoke(_Index_tuple_Indices...)

2019独角兽企业重金招聘Python工程师标准>>> [hadoopiZ25s7cmfyrZ C_script]$ cat test_thread_a.cpp #include <iostream> #include <atomic> #include <thread> #include <vector>std::atomic<int> global_counter(0);void increa…

1203正规式转换为有穷自动机

1 #include<stdio.h>2 #include <ctype.h>3 #define ok 14 #define error 05 #define MAXREGLUARLONG 406 #define MAXSTATELONG 40 7 #define MAXCAHRSLONG 40 8 typedef int state;9 int iCurrentState0; //初态以1开始10 int iPreState0;11 in…

[VMware WorkStation]虚拟机网络

1、简介&#xff1a; vmware为我们提供了三种网络工作模式&#xff0c;它们分别是&#xff1a;Bridged&#xff08;桥接模式&#xff09;、NAT&#xff08;网络地址转换模式&#xff09;、Host-Only&#xff08;仅主机模式&#xff09;。在我安装了vmware workstation player 1…

火狐中的CSS Grid Inspector新增强大的功能

2019独角兽企业重金招聘Python工程师标准>>> 上周&#xff0c;我谈到了日常的网站浏览我用Firefox&#xff0c;但是在切图网做前端开发的时候我会用Chrome。 随着每个版本&#xff0c;FF Nightly在开发工具箱中有一些越来越棒的工具&#xff0c;这些更新使Firefox成…