Pagini recente » Cod sursa (job #1212865) | Cod sursa (job #336806) | Cod sursa (job #3201441) | Cod sursa (job #1978951) | Cod sursa (job #2330912)
#include <bits/stdc++.h>
#define ff first
#define ss second
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pi;
const string file = "data";
const ll INF = 9223372036854775807ll;
const int inf = 2147483647;
int n, test;
bitset<100000> b;
int main()
{
b.set();
/*ofstream fout (file+".out");
srand(time(NULL));
n = 100000;
test = 100000;
fout << n << " " << test << "\n";
for (int i = 1; i <= n; ++i)
fout << rand()%100000+1 << " ";
fout << "\n";
for (int i = 1; i <= test; ++i){
int x = rand()%n+1, y = rand()%n+1;
if(x > y)
swap(x, y);
fout << x << " " << y << "\n";
}*/
return 0;
}