学习
20203952乔志
这个作者很懒,什么都没留下…
展开
-
2021-11-01
Codeforces Round #752 (Div. 2)第一题#include<iostream>#include<algorithm>using namespace std;int main(){ int t; cin>>t; while(t--) { int n; int sum=0; cin>>n; for(int原创 2021-11-02 19:03:44 · 67 阅读 · 0 评论 -
2021-10-26
10.25日Codeforces Round #751 (Div. 2)第一题这道题的主要思路是在进行找到按循序最小的数进行输出,然后将剩余部分进行原样输出。下面展示一些 内联代码片。// An highlighted blockvar foo = 'bar';```#include<iostream>#include<string>#include<algorithm>using namespace std;int main(){ i原创 2021-10-26 19:16:07 · 83 阅读 · 0 评论 -
2021.1.13的随笔
今天我主要学习了stl与预习明天的学习内容指针,我对与指针的学习是十分的薄弱,对于基础知识的学习也是是分析吃力的,今天我打了2道牛客网的题目来练习stl,,两道题目来练习排序,剩下时间都是在预习老师发的课件。...原创 2021-01-13 21:17:40 · 86 阅读 · 0 评论 -
2021.01.09哈学院20的5道题
Rabbit loves flowers very much and she plants n pots of flowers in her house. But she never prunes them because she is lazy. So the flowers have different heights and look ugly. One day, Kayaking decides to prune the flowers to make them look beautiful. To原创 2021-01-09 20:42:45 · 268 阅读 · 0 评论 -
2021.01.08
给你n个整数,请按从大到小的顺序输出其中前m大的数。Input每组测试数据有两行,第一行有两个数n,m(0<n,m<1000000),第二行包含n个各不相同,且都处于区间[-500000,500000]的整数。Output对每组测试数据按从大到小的顺序输出前m大的数。Sample Input5 33 -35 92 213 -644Sample Output213 92 3#include<stdio.h>int a[1000000];int main(){原创 2021-01-08 14:22:20 · 106 阅读 · 0 评论 -
2021.01.06
#学习动态规划DP入门把多阶段过程转化为一系列单阶段的关系,通过逐个求解,创立了解决此类问题优化问题的新方法,将此称为动态规划。项目1线性动规项目2区域动规项目3树形动规项目4背包问题这四个项目的主要问题是关于最短路进问题...原创 2021-01-07 21:07:58 · 232 阅读 · 0 评论 -
2021.01.05
题目描述在一个旧式的火车站旁边有一座桥,其桥面可以绕河中心的桥墩水平旋转。一个车站的职工发现桥的长度最多能容纳两节车厢,如果将桥旋转180180度,则可以把相邻两节车厢的位置交换,用这种方法可以重新排列车厢的顺序。于是他就负责用这座桥将进站的车厢按车厢号从小到大排列。他退休后,火车站决定将这一工作自动化,其中一项重要的工作是编一个程序,输入初始的车厢顺序,计算最少用多少步就能将车厢排序。输入格式共两行。第一行是车厢总数N( \le 10000)N(≤10000)。第二行是NN个不同的数表示初始的车原创 2021-01-07 19:53:05 · 366 阅读 · 0 评论 -
2021.01.04
排序以及快排的使用时间2021.01.04题目https://www.luogu.com.cn/problem/P1104代码编写#include<bits/stdc++.h>using namespace std;struct no{char name[100];int year,mon,day;int level;}a[110];bool cmp(no a,no b){if(a.year<b.year)return 1;if(a.year>b.yea原创 2021-01-07 19:18:08 · 864 阅读 · 2 评论