Eternity_G
Eternity_G
全部文章
分类
AtCoder/Codeforces(25)
c++(1)
CCF(25)
c语言(5)
java(1)
JAVA的自学之路(31)
LeetCode(5)
PTA(62)
switch(1)
《编程谜题》(4)
复变函数与积分变换(2)
头歌(15)
字符串(1)
指针(1)
数据库(4)
数据结构(36)
洛谷(12)
笔记(24)
算法竞赛(12)
链表(2)
队列(1)
归档
标签
去牛客网
登录
/
注册
Eternity_G的博客
全部文章
(共270篇)
2021-07-20[DFS][BFS]
#include<bits/stdc++.h> using namespace std; int n,cnt;//n:矩阵大小;cnt:路线总数 bool tag[100][100];//记录当前节点是否走过:初始为false; int dir[][2]={ { 1,...
2022-04-18
0
295
2021-07-21P1219 [USACO1.5]八皇后 Checker Challenge
#include<bits/stdc++.h> using namespace std; //p1219 八皇后 Checker Challenge int n; int cnt; //记数 int arr[1024]; //记录状态 char map1[1024][102...
2022-04-18
0
0
2021-07-21 P2819 图的m着色问题
题目背景 给定无向连通图G和m种不同的颜色。用这些颜色为图G的各顶点着色,每个顶点着一种颜色。如果有一种着色法使G中每条边的2个顶点着不同颜色,则称这个图是m可着色的。图的m着色问题是对于给定图G和m种颜色,找出所有不同的着色法。 题目描述 对于给定的无向连通图G和m种不同的颜色,编程计算图的所有...
2022-04-18
0
481
P1135 奇怪的电梯
#include<bits/stdc++.h> using namespace std; //p1135 奇怪的电梯 int n,a,b,ans=99999999; //n:总楼层数 a:起始 b:终点 int to[201]; //按钮楼层数 bool tag[201]; ...
2022-04-18
0
292
P1331 海战
题目描述 在峰会期间,武装部队得处于高度戒备。警察将监视每一条大街,军队将保卫建筑物,领空将布满了F-2003飞机。此外,巡洋船只和舰队将被派去保护海岸线。不幸的是因为种种原因,国防海军部仅有很少的几位军官能指挥大型海战。因此,他们考虑培养一些新的海军指挥官,他们选择了“海战”游戏来帮助学习。 在...
2022-04-18
0
414
P1378 油滴扩展
#include<bits/stdc++.h> using namespace std; //p1378 油滴扩展 const double PI=3.1415926535; bool s[10]; //判断点是否已经滴过了 double x[10]; //x值 double y[...
2022-04-18
0
0
P1036 [NOIP2002 普及组] 选数
#include<bits/stdc++.h> using namespace std; //p1036 [NOIP2002 普及组] 选数 int n,k,ans; int a[50]; bool isprime(int a){ //判断素数 for(int i=2;i<...
2022-04-18
0
348
2021-07-19【括号匹配】
#include<bits/stdc++.h> using namespace std; stack<char> a; string s; bool cmp(char a,char b){ if(a=='('&&b==')') return tr...
2022-04-18
0
285
2021-06-29【文件操作】
#include<stdio.h> #include<stdlib.h> #include<assert.h> struct Student { char name[20];//姓名 int age;//年龄 int score;//分数 }; ...
2022-04-18
0
252
2021-06-23【BFS】【P1162 填涂颜色】
#include<bits/stdc++.h> using namespace std; int xx[]={ 0,1,0,-1}; int yy[]={ 1,0,-1,0}; int mp[40][40]; bool vis[40][40]; int main(){ ...
2022-04-18
0
0
首页
上一页
8
9
10
11
12
13
14
15
16
17
下一页
末页