码迷,mamicode.com
首页 >  
搜索关键字:mes    ( 11106个结果
[模板]最小圆覆盖
#include <bits/stdc++.h> using namespace std; const double EPS = 1e-8; const int N = 1e5+10; struct Point{ double x, y; }; int n; Point p[N]; bool equ ...
分类:其他好文   时间:2021-03-10 12:57:35    阅读次数:0
C. K-beautiful Strings
题目链接:https://codeforces.com/contest/1493/problem/C 题意:给定字符串s 求一个字典序最小的字符串t 满足 t的字典序>=s 并且 其中出现的字母次数可以被k整除 思路:考虑枚举哪个位置变大, 再枚举变成哪一个字母 然后利用前缀和 找前面的有多少个需要 ...
分类:其他好文   时间:2021-03-08 14:05:28    阅读次数:0
在scanf函数中占位符使用错误而产生的一些错误
出现的问题 在做编程题的的时候,遇到了一个很奇怪的错误,出问题的代码如下: 1 #include <cstdio> 2 using namespace std; 3 4 int main() { 5 int c; 6 bool b; 7 // printf("%p %p", &c, &b); // ...
分类:其他好文   时间:2021-03-08 13:38:55    阅读次数:0
数论:入门到入土 Three
超短文警告! 埃氏筛: #include <iostream> #include <cstring> #include <stdio.h> #define HRiver2 return #define Warma 0 #define ll long long #define maxn 114514 ...
分类:其他好文   时间:2021-03-08 13:23:25    阅读次数:0
1038 Recover the Smallest Number (30 分)
Given a collection of number segments, you are supposed to recover the smallest number from them. For example, given { 32, 321, 3214, 0229, 87 }, we c ...
分类:其他好文   时间:2021-03-06 14:47:20    阅读次数:0
Why is Go PANICking?
A panic should always be a last resort, and even then consider a better option! Logging errors with context (cause and message) Expose errors as metri ...
分类:其他好文   时间:2021-03-05 13:31:10    阅读次数:0
vueDemo
1. vue脚手架 用来创建vue项目的工具包 创建项目: npm install -g vue-cli vue init webpack VueDemo 开发环境运行: cd VueDemo npm install npm run dev 生产环境打包发布 npm run build npm in ...
分类:其他好文   时间:2021-03-05 13:06:18    阅读次数:0
three.js: Control gui or play sound
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximu ...
分类:Web程序   时间:2021-03-04 13:32:30    阅读次数:0
MyFlash工具
MyFlash工具是美团开发的一个开源辅助性工具,主要用来恢复数据(误删删除是每个DBA比较头疼的事情) MyFlash的安装和使用 下载地址:https://github.com/Meituan-Dianping/MyFlash 1.环境说明: 1)本机是centos7.x 2)mysql5.7. ...
分类:其他好文   时间:2021-03-03 12:15:57    阅读次数:0
js基础 数组findIndex
var le = [{name:"js"}, {name:"css"}, {name:"python"} ]; var index = le.findIndex(function(item){ return item.name== "css"; }); console.log(index);1 ...
分类:编程语言   时间:2021-03-01 13:46:39    阅读次数:0
11106条   上一页 1 ... 16 17 18 19 20 ... 1111 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!