Uva 11149 - Power of Matrix ( 矩阵快速幂 )#include #include #define CLR( a, b ) memset( a, b, sizeof(a) )#define MOD 10#define MAX_SIZE 40struct Mat{ in...
分类:
其他好文 时间:
2014-10-31 15:31:42
阅读次数:
193
Uva 11551 - Experienced Endeavour ( 矩阵快速幂 )#include #include #include using namespace std;#define MAX_SIZE 50#define MOD 1000#define CLR( a, b ) m...
分类:
其他好文 时间:
2014-10-31 13:44:24
阅读次数:
158
HDU 4965 Fast Matrix Calculation ( 矩阵乘法 + 矩阵快速幂 + 矩阵乘法的结合律 )#include #include #include using namespace std;#define MAX_SIZE 1001#define CLR( a, b ) me...
分类:
其他好文 时间:
2014-10-30 18:59:38
阅读次数:
180
SQL> alter system set sga_max_size=2048M scope=spfile; alter system set sga_max_size=2048M scope=spfile * ERROR at line 1: ORA-32001: write to SPFILE ...
分类:
其他好文 时间:
2014-10-27 01:45:12
阅读次数:
179
目的使由Exmail+Postfix搭建的邮件系统能上传8M的附件。1.修改/etc/php.inimax_execution_time=30#改为60(增加处理脚本的时间限制)
memory_limit=8M#改为8M(这样才能发8M的附件)
post_max_size=8M#改为8M
upload_max_filesize=8M#改为8M2.修改/etc/postfix/main.cf,添加如下语..
分类:
其他好文 时间:
2014-10-24 19:07:10
阅读次数:
216
POJ 3233 - Matrix Power Series ( 矩阵快速幂 + 二分)#include #include #include using namespace std;typedef long long LL;#define MAX_SIZE 30#define CLR( a, b )...
分类:
其他好文 时间:
2014-10-24 00:01:33
阅读次数:
408
Uva 10655 - Contemplation! Algebra ( 矩阵快速幂 )#include #include #include using namespace std;typedef long long LL;#define MAX_SIZE 2LL p, q, n, t;LL M[M...
分类:
其他好文 时间:
2014-10-22 15:51:05
阅读次数:
126
图例:在该图中使用了以下参数名称缩写:
MT = MEMORY_TARGET
MMT = MEMORY_MAX_TARGET
ST = SGA_TARGET
PAT = PGA_AGGREGATE_TARGET
SMS = SGA_MAX_SIZE
MEMORY_TARGET 设置为非零值时:
如果设置了 SGA_TARGET 和 PGA_AGGREGATE...
分类:
数据库 时间:
2014-10-17 12:01:28
阅读次数:
323
SGA_MAX_SIZE是从9i以来就有的作为设置SGA大小的一个参数,而SGA_TARGET则是从10g才有的一个新参数,作为配合10g自动管理SGA而出现的,下面以实验的方式,深入解析这2个参数的区别和作用
[oracle@bak ~]$ sqlplus / as sysdba
SQL*Plus: Release 10.2.0.1.0 - Production on Mon...
分类:
其他好文 时间:
2014-10-13 06:53:59
阅读次数:
352
1: 打开php.ini文件2: 搜索下面三个字段 upload_max_filesize = 2M post_max_size = 8M memory_limit = 128M 修改成自己想要的大小3: 重启服务
分类:
数据库 时间:
2014-10-10 14:39:54
阅读次数:
207