- 博客(5)
- 收藏
- 关注
原创 牛客-物流
#include<bits/stdc++.h> using namespace std; int a,b,c,d,c1,c2,c3,c4; int main(){ int T; int p1,p2; int num=0; cin>>T; while(T--){ cin>>a>>b>>c>>d>>c1>>c2>>c3>>c4; ...
2022-05-27 22:42:28 105 2
原创 牛客-越狱
#include<bits/stdc++.h> using namespace std; int main(){ vector<int>a; int n,b,c; cin>>n; c=n; while(n--){ cin>>b; a.push_back(b); } sort(a.begin(),a.end()); int s=a[c/2-1]+1; cout...
2022-05-27 22:38:24 94
原创 Raising Modulo Numbers
题目: People are different. Some secretly read magazines full of interesting girls' pictures, others create an A-bomb in their cellar, others like using Windows, and some like difficult mathematical games. Latest marketing research shows, that this market se
2022-05-22 17:03:23 132
原创 《Tinking in C++ 读书笔记(二)》
一 c++的编译器虽然能提供比C语言更多的功能,但是c++编译器更加严格,对安全性方面要求更高(安全性包括了初始化与清除俩个方面),为了保证安全性,在c++编程中经常会使用到构造函数来初始化对象的一些数据(例如private成员) 下面是一个简单地例子: class x{ private: int i; puiblic: x(); } void f(){ x a; } 当执行x这个对象的时候,当程序执行到了a这里时,构造函数就自动调用,因为编译器已经在a的定义处插入了一个x::x()
2022-04-20 22:15:33 484
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人