该文被密码保护。 阅读全文
摘要:
作业:文档形式 3到5页理解 1.理解 2.源代码解释(1到2页) 3.实现效果 项目地址: https://github.com/zhiyishou/polyer Demo:https://zhiyishou.github.io/Polyer [图形学]Delaunay三角剖分算法附C++实现 h 阅读全文
摘要:
#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 阅读全文
摘要:
记录一些之前没见过的代码: #include <bits/stdc++.h> using namespace std; typedef long long ll; #define INF 2000000000ll #define SIZE 100000ll #define pb push_back 阅读全文
摘要:
#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>; } 阅读全文
摘要:
首先题意:(这个真的令人无奈,题目都看不太明白) 网上百度了一下,就是以下意思: 给你n*m个格子,每个格子的面积是10*10米,整个区域外看作无限高的墙壁。输入每个格子的海拔高度(可能为负数),以及区域内的雨水总体积,输出区域水位的海拔高度以及淹没方格的占比。 注明一下:星星假装为水,题目给出了每 阅读全文