摘要: #include<iostream> #include<cstring> using namespace std; #define maxn 105 int m,n,w_num,path_num; typedef struct node{ int x1,y1,x2,y2; }Wall; Wall w 阅读全文
posted @ 2021-11-20 17:44 智人心 阅读(64) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; long long pow(long long m,int n){ long long ans = 1; while(n--){ ans *= m; } return ans; } int main(){ int i,j 阅读全文
posted @ 2021-11-20 12:49 智人心 阅读(58) 评论(0) 推荐(0)