1030

 1 #include <iostream>
 2 using namespace std;
 3 int main()
 4 {
 5   int a[3][3];
 6   int i,j;
 7   void huanhang(int a[3][3]);
 8   for(i=0;i<3;i++)
 9     for(j=0;j<3;j++)
10     cin>>a[i][j];
11     huanhang(a);
12   for(i=0;i<3;i++)
13   {
14     for(j=0;j<3;j++)
15     cout<<a[i][j]<<" ";
16     cout<<endl;
17 }
18     return 0;
19 }
20 void huanhang(int a[3][3])
21 {
22     int m,n,i;
23     for(m=0;m<2;m++)
24     for(i=0;i<3;i++)
25  {
26     if(m!=1||i!=0)
27  {
28     n=a[i][m];
29     a[i][m]=a[m][i];
30     a[m][i]=n;
31  }
32  }
33 }
时间: 2024-10-13 00:23:36

1030的相关文章

LightOJ 1030 Discovering Gold【概率】

题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1030 题意:基础概率题. 代码: #include <stdio.h> #include <string.h> #include <vector> #include <string> #include <algorithm> #include <iostream> #include <iterator>

【BZOJ】【1030】【JSOI2007】文本生成器

AC自动机/DP Orz ZYF 玛雅快要省选了,赶紧复(xue)习(xi)一下AC自动机…… 其实在AC自动机上DP并没有当初想的那么复杂……就是把DP的转移关系换成了AC自动机上的边而已(不过这题好像搞成了Trie图?) 1 /************************************************************** 2 Problem: 1030 3 User: Tunix 4 Language: C++ 5 Result: Accepted 6 Time

mysql 1030 Got error 28 from storage engine

mysql 1030 Got error 28 from storage engine 错误原因:磁盘临时空间不够. 解决办法:df -h 查看设备存储的使用情况 du -h --max-depth=1 查看目录的大小,删除一部分内容

NYIST 1030 Yougth&#39;s Game[Ⅲ]

Yougth's Game[Ⅲ]时间限制:3000 ms | 内存限制:65535 KB难度:4 描述有一个长度为n的整数序列,A和B轮流取数,A先取,每次可以从左端或者右端取一个数,所有数都被取完时游戏结束,然后统计每个人取走的所有数字之和作为得分,两人的策略都是使自己的得分尽可能高,并且都足够聪明,求A的得分减去B的得分的结果. 输入输入包括多组数据,每组数据第一行为正整数n(1<=n<=1000),第二行为给定的整数序列Ai(-1000<=Ai<=1000). 输出对于每组数

BZOJ 1030 [JSOI2007]文本生成器(AC自动机)

[题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=1030 [题目大意] 求出包含任意一个给定串的串数量 [题解] 我们求出不包含任意一个给定串的数量,用全集去减即可, 对于给定串建立AC自动机,用1节点作为根,0节点向1连全字符集转移作为超级源, 那么0->match能匹配所有不包含给定串的串, 记dp[i][j]表示匹配了i长度,匹配到AC自动机j节点的串数量, 统计之后取补集即可. [代码] #include <cstdio&g

bzoj 1030: [JSOI2007]文本生成器 (ac自己主动机上的dp)

1030: [JSOI2007]文本生成器 Time Limit: 1 Sec  Memory Limit: 162 MB Submit: 2635  Solved: 1090 [Submit][Status][Discuss] Description JSOI交给队员ZYX一个任务.编制一个称之为"文本生成器"的电脑软件:该软件的使用者是一些低幼人群,他们如今使用的是GW文本生成器v6版.该软件能够随机生成一些文章―――总是生成一篇长度固定且全然随机的文章-- 也就是说,生成的文章中

Lightoj 1030 - Discovering Gold

题目大意:一个人走n个格子到终点.通过骰子确定每次走几步.每个格子上有黄金,问最后得到黄金数量的期望. 假设dp[i]为到第i个格子的概率. a[i]为第i个格子的黄金数量. 那么期望就是  Σa[i]*dp[i] 重点是怎么求概率. 拿样例举例. 3 3 6 9 dp[1]=1;没毛病 dp[2]=0.5 dp[3]=dp[1]*0.5+dp[2]*1=1 /* *********************************************** Author :guanjun Cr

PAT 1030. Travel Plan (30)

1030. Travel Plan (30) A traveler's map gives the distances between cities along the highways, together with the cost of each highway. Now you are supposed to write a program to help a traveler to decide the shortest path between his/her starting cit

杭电 1030 Delta-wave

Delta-wave Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 5447    Accepted Submission(s): 2063 Problem Description A triangle field is numbered with successive integers in the way shown on the

随笔-1030

随笔1030 学习第三天 表单 一.表单 <form action="" method=""></form> 其中action代表制作的表单指令提交到的地址,method指提交方式:method="post";与method="get";,post与get的区别是是否能在浏览器地址内查看到表单提交的值.get为所提交的所有的值都能在浏览器查看,post则把提交的值隐藏无法查看,所以post利用较多. 由