该文被密码保护。 阅读全文
posted @ 2019-04-13 14:27 saaas 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-04-08 16:38 saaas 阅读(18) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-04-08 16:06 saaas 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 作业:文档形式 3到5页理解 1.理解 2.源代码解释(1到2页) 3.实现效果 项目地址: https://github.com/zhiyishou/polyer Demo:https://zhiyishou.github.io/Polyer [图形学]Delaunay三角剖分算法附C++实现 h 阅读全文
posted @ 2019-04-05 21:08 saaas 阅读(247) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<algorithm>using namespace std;int a[200005];int b[200005];int c[200005];int n;int solve(int a,int c){ if(a>=0&&c>=0&&a<n&&c 阅读全文
posted @ 2019-04-04 13:59 saaas 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 记录一些之前没见过的代码: #include <bits/stdc++.h> using namespace std; typedef long long ll; #define INF 2000000000ll #define SIZE 100000ll #define pb push_back 阅读全文
posted @ 2019-04-01 23:30 saaas 阅读(148) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-03-31 11:57 saaas 阅读(20) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<stack>#include<map>using namespace std;struct node{ int a; int b;}mynode;int main(){ int n; cin>>n; map<string,mynode>; } 阅读全文
posted @ 2019-03-28 14:00 saaas 阅读(57) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-03-25 18:10 saaas 阅读(7) 评论(1) 推荐(0) 编辑
摘要: 首先题意:(这个真的令人无奈,题目都看不太明白) 网上百度了一下,就是以下意思: 给你n*m个格子,每个格子的面积是10*10米,整个区域外看作无限高的墙壁。输入每个格子的海拔高度(可能为负数),以及区域内的雨水总体积,输出区域水位的海拔高度以及淹没方格的占比。 注明一下:星星假装为水,题目给出了每 阅读全文
posted @ 2019-03-24 13:31 saaas 阅读(227) 评论(0) 推荐(0) 编辑