上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: #include<vector> #include<map> #include<iostream> using namespace std; struct Point { int x; int y; int z; Point() : x(0), y(0),z(0) {} Point(int a, i 阅读全文
posted @ 2021-04-28 22:12 摸鱼选手LLF 阅读(183) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstdio> #include<algorithm> #include<cstring> #include<cmath> #define pb push_back #define fi first #define se second #def 阅读全文
posted @ 2021-04-10 22:29 摸鱼选手LLF 阅读(57) 评论(0) 推荐(0)
摘要: //控制生成物体移动using System.Collections; using System.Collections.Generic; using UnityEngine; public class shoot : MonoBehaviour { // Start is called befor 阅读全文
posted @ 2021-04-02 12:33 摸鱼选手LLF 阅读(259) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> using namespace std; #define far(i,t,n) for(int i=t;i<n;++i) typedef long long ll; typedef unsigned long long ull; char t[1000 阅读全文
posted @ 2021-03-31 18:13 摸鱼选手LLF 阅读(55) 评论(0) 推荐(0)
摘要: #include <iostream> #include<bits/stdc++.h> using namespace std; void quicksort(vector<int>&v,int l,int r) { if(l>=r) return ; int val=v[l]; int ll=l, 阅读全文
posted @ 2021-03-28 09:45 摸鱼选手LLF 阅读(71) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> #define fi first #define se second #define io std::ios::sync_with_stdio(false) using namespace std; typedef long long ll; type 阅读全文
posted @ 2020-10-29 10:46 摸鱼选手LLF 阅读(145) 评论(0) 推荐(0)
摘要: 把最近打的 cf ,at ,loj整理一下 阅读全文
posted @ 2020-10-23 23:10 摸鱼选手LLF 阅读(49) 评论(0) 推荐(0)
摘要: div3真好啊 养老 A. Boring Apartments 直接模拟 B. Yet Another Bookshelf 模拟 C. Dominant Piranha 不会 D. Districts Connection 模拟,按树每个deep去分层连就行了 #include<bits/stdc+ 阅读全文
posted @ 2020-10-21 10:41 摸鱼选手LLF 阅读(230) 评论(0) 推荐(1)
摘要: http://codeforces.com/contest/1422/problem/D D. Returning Home 一个n*n的图 有些点就是可以瞬移 和象棋里车的规则一样,给你一些点,只要你在横纵坐标 就可以瞬移过去 考虑对x,y的列和行建图就可以了 #include <bits/std 阅读全文
posted @ 2020-10-13 10:47 摸鱼选手LLF 阅读(123) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> #define fi first #define se second #define io std::ios::sync_with_stdio(false) using namespace std; typedef long long ll; type 阅读全文
posted @ 2020-10-06 12:41 摸鱼选手LLF 阅读(164) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 10 下一页