极为沙雕的大奶熊礽荣
极为沙雕的大奶熊礽荣
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
极为沙雕的大奶熊礽荣的博客
全部文章
(共4篇)
题解
去除前导零就可 #include <iostream> #include <algorithm> #include <string.h> #include <vector> #include <cmath> typedef long lon...
2020-12-14
2
459
题解
对天数进行二分,右界直接1e18会溢出 #include <iostream> #include <algorithm> #include <string.h> #include <vector> #include <cmath> usin...
2020-12-14
0
515
略微沙雕的办法
比较简单的一种办法#include <iostream>using namespace std;#define MAX 1000+5</iostream> int main(){ int a[MAX] = {1,1}; int n; for (int i =...
2020-04-11
1
441
最基本的dfs题
include <stdio.h> include <string.h> char arr[1100][1100];int n,m;void dfs(int x,int y){ arr[x][y] = 'a'; for(int i = -1; i <= 1;...
2019-12-30
1
546