zoj 1069 300行。。 读起来可能有点费劲 不过比较好理解 每个图案有8种情况 分别是 翻转一次对应的图形旋转4次就是4种 再翻转一次旋转4次就又是4种 所以每种图案又8种可能 然后对这3张图案进行枚举888即可 #include<stdio.h> #include<iostream> #include<memory.h>… 建站知识 2024/11/28 2:15:57
ZOJ1201 还是不够细心啊。 //2513208 2011-04-27 13:20:18 Presentation Error 1201 C 0 160 ylwh!//2513360 2011-04-27 15:36:29 Accepted 1201 C 0 160 ylwh!#include <stdio.h>#include <string.h>int main(void){int n, i,j;int s[55];char ch;… 建站知识 2024/11/28 7:25:12
zcmu1691 1691: 一个简单的数字游戏 Time Limit: 1 Sec Memory Limit: 128 MB Submit: 448 Solved: 119 [ Submit][ Status][ Web Board] Description 由于一般的数字游戏很难,小灰灰同学把这个数字游戏改了,让游戏变得非常简单,修改后的数字游戏的规… 建站知识 2024/11/28 4:38:57
zoj 1100 题目来源:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId100 现在换一种方式来写这个状态压缩 我们先把第0行铺满,然而其余每一行的状态都可以由前一种状态转移而来。我们令第0层全部铺满,只有一种情况,当0 <… 建站知识 2024/11/29 16:21:36
ZOJ1011 #include <stdio.h> #include <stdlib.h> #include <memory.h> #include <string.h>int n, m, k, lev;//树的层数 int transition[155][155];//存放表格中数据 char tree[11][2222]; int dfs(int signal, int flag, int level)//flag为树中字母下… 建站知识 2024/11/28 12:10:39
zoj1940 链接:点击打开链接 题意:三维搜索‘S’为起点,‘E’为终点,求走出的最短时间 代码: #include <iostream> #include <stdio.h> #include <string.h> #include <math.h> #include <queue&… 建站知识 2024/11/29 15:48:14
zoj1094 栈的应用 #include<stdio.h> #include<algorithm> #include<iostream> #include<string.h> using namespace std; struct Node {int mults;int row;int col; }; char str[1000]; int pos; int flag; int rows[30]; int cols[30]; char s[10]; Node get… 建站知识 2024/11/28 10:58:55
Android 获取系统信息获取 一、系统信息 源码下载 https://github.com/sufadi/AndroidCpuTools/commits/master <string name"phone_mode">本机型号: </string><string name"phone_product">手机制造商: </string><string name"phone_band"… 建站知识 2024/11/29 11:13:29