- 博客(11)
- 收藏
- 关注
原创 python画图
机器猫:# -*- coding: utf-8 -*- from turtle import *import turtlespeed(0)penup()seth(180)fd(200)seth(0)penup() #外圈头circle(150, 40)pendown()fillcolor('dodgerblue')begin_fill()circle(150,...
2020-01-29 17:59:32 453 1
原创 Codeforces Round #576 (Div. 1)Problem A.MP3
A. MP3time limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputOne common way of digitalizing sound is to record sound intensity at partic...
2019-07-31 15:39:50 238
原创 第十届山东ACM省赛总结
第一次参加省赛,很遗憾打铁了,非常的不甘心,出了三道题,都是在第一个小时出的,后面四个小时一直在改C和D,尝试写K,C和D都是水题,但是就是一直wa,第一遍我写的C,少考虑了一种特殊情况,后来队友写了一遍,测试了很多样例,感觉稳了,没想到有wa了一发,直接心态有点崩,以为思路错了,就转去写D,D题我读的题,读完有点懵,感觉坑很多,题目又是问谁赢,想当然的认为是博弈,就一直在找规律,找了半天又感...
2019-05-13 20:03:16 280
原创 2019杭州师范大学校赛 问题 K: Little Sub and Triangles
问题 K: Little Sub and Triangles时间限制: 2 Sec 内存限制: 256 MB提交: 427 解决: 76[提交] [状态] [命题人:admin]题目描述Little Sub loves triangles. Now he has a problem for you.Given n points on the two-dimensional plan...
2019-05-04 21:39:45 211
转载 已知三点坐标求三角形面积
现学现卖,嘻嘻嘻在平面解析几何中有学到:设A(x1,y1),B(x2,y2),C(x3,y3)由A–>B–>C–>A 按逆时针方向转。(行列式书写要求)设三角形的面积为S则S=(1/2)(下面行列式)|x1 y1 1||x2 y2 1||x3 y3 1|S=(1/2)(x1y21+x2y31+x3y11-x1y31-x2y11-x3y21)即用三角形的三个顶点...
2019-05-04 21:38:19 13888
原创 2019杭州师范大学校赛问题 H: Little Sub and Counting
问题 H: Little Sub and Counting时间限制: 1 Sec 内存限制: 256 MB提交: 351 解决: 100[提交] [状态] [命题人:admin]题目描述Little Sub likes Math. Now he has a simple counting problem for you.Given an positive integer seque...
2019-05-04 15:40:50 246
原创 2019杭州师范大学校赛 I-题Little Sub and Enigma
问题 I: Little Sub and Enigma时间限制: 1 Sec 内存限制: 256 MB提交: 807 解决: 73[提交] [状态] [命题人:admin]题目描述Little Sub builds a naive Enigma machine of his own. It can only be used to encrypt/decrypt lower-case ...
2019-05-04 15:19:26 427
原创 ZOJ 十六届浙江省赛 I:Fibonacci in the Pocket
I:Fibonacci in the Pocket思路:找规律的题,先打表,找规律,会很容易发现,每三项一循环,奇数 偶数 偶数,不过题目数据很大,直接用字符串数组,写一个大数取余运算即可。不过题目又来给定区间[m,n],先算出前m项是奇数还是偶数,再算出前n项是奇数还是偶数,这里有个小技巧,奇数-偶数=奇数,奇数-奇数=偶数,偶数-偶数=偶数,偶数-奇数=奇数。#include<ios...
2019-04-28 22:27:57 304
原创 ZOJ 十六届浙江省赛 G:Lucky 7 in the Pocket
也是一道签到题。#include<iostream>#include<stdio.h>#include<string>#include<cstring>#include<algorithm>#include<math.h>#include<stack>#include<set>#inc...
2019-04-28 22:13:09 257
原创 ZOJ 十六届浙江省赛 F:Abbreviation
F:Abbreviation签到题。#include<iostream>#include<stdio.h>#include<string>#include<cstring>#include<algorithm>#include<math.h>#include<stack>#include<s...
2019-04-28 22:08:55 197
原创 ZOJ 十六届浙江省赛H.singing everywhere
大一萌新,多多关照,(ɔˆ ³(ˆ⌣ˆc)第一次写博客,啥也不会,各位大佬多多包涵H.Singing Everywhere思路:一开始比较懵,细心思考发现,若要想减少voice crack ,那么就必须删除峰值(也就是voice crack),但是只会减少1个或者2个或者不变,因为只能删除至多一个点,想到这里就可以敲代码了,减少两个的情况就是有两个相邻的并且相等的峰值,比如样例中1 9 1 ...
2019-04-28 18:44:24 748
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人