This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <random> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#include "jeaiii_to_text.h.h" | |
using namespace std; | |
using namespace jeaiii; | |
void itoa_test(unsigned int n, char *s) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <time.h> | |
#include <stdlib.h> | |
#include <string.h> | |
const int MAXN = 100000; | |
int buf1[64][MAXN], buf2[64][MAXN], cnt[64], cnt2[64]; | |
long long used; |