SMALLWORLDS - ALPHA EDITION Version 0.001 Readme File September 15, 2011
This README file includes information that pertains to general
| #include<fstream> | |
| #include<math.h> | |
| using namespace std; | |
| const int MAX_SIZE = 100; | |
| const int MAX_INT = 9999999; | |
| int a[MAX_SIZE]; | |
| int d[MAX_SIZE][MAX_SIZE]; // Вот здесь хранятся частичные решения. Размерности означают следующее: |
| #include <iostream> | |
| #include <stdio.h> | |
| #include <math.h> | |
| #include <fstream> | |
| #include <math.h> | |
| using namespace std; | |
| #include "megaprofiler.h" | |
| const int max_n = 10000000; | |
| const double dh = 1; |
| #include <iostream> | |
| #include <stdio.h> | |
| #include <math.h> | |
| //---------- MEGA PROFILER ---------- | |
| unsigned long long __time1, __time2, __dt, __min_dt, __time_total; | |
| #define TEST_HEAD_EX(REPEAT_TIMES)\ | |
| __min_dt = 0xffffffff;\ |
| #include <iostream> | |
| #include <stdio.h> | |
| #include <math.h> | |
| //---------- MEGA PROFILER ---------- | |
| unsigned long long __time1, __time2, __dt, __min_dt; | |
| #define TEST_HEAD(REPEAT_TIMES)\ | |
| __min_dt = 0xffffffff;\ |
| #include <iostream> | |
| #include <time.h> | |
| #include <math.h> | |
| #include <limits> | |
| int main () | |
| { | |
| int MAX_N = 1000000; | |
| int a[MAX_N]; | |
| int b; |
| #include <stdio.h> | |
| #include <vector> | |
| #include <algorithm> | |
| const char L[16] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}; | |
| void pr_hex(int i, int k = 0) | |
| { | |
| if (k == 16) return; | |
| pr_hex(i / 16, k + 1); |