-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
73 lines (58 loc) · 1.36 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <math.h>
#include <set>
#include <queue>
#include <ctime>
#include <random>
#include <numeric>
using namespace std;
typedef long long ll;
typedef long double ld;
const double eps = 1e-7;
int n;
// генерирует действительное число от 0 до 1
double rnd() { return double(rand()) / RAND_MAX; }
// Количество ферзей, поставленных успешно
int f(vector<int>& p) {
int s = 0;
vector <int> d1(2 * n - 1, 0), d2(2 * n - 1, 0);
for (int i = 0; i < n; i++) {
if (d1[i + p[i]] == 0 && d2[n + i - p[i] - 1] == 0) {
s++;
d1[i + p[i]] = 1;
d2[n + i - p[i] - 1] = 1;
}
}
return s;
}
int main()
{
cin >> n;
mt19937 gen(time(0));
//Генерируем начальное состояние
vector <int> p(n);
iota(p.begin(), p.end(), 0);
shuffle(p.begin(), p.end(), gen);
// Метод отжига
int ans = f(p);
double t = 1.0;
for (int step = 0; step < 100000; step++) {
t *= 0.99;
if (ans == n) break;
// p1 - новая перестановка
vector <int> p1 = p;
swap(p1[rand()%n], p1[rand()%n]);
int val = f(p1);
//cout << t << " " << val << endl;
if (val > ans || (rnd() < exp(double(val - ans) / t))) {
ans = val;
p = p1;
}
}
for (auto it : p) {
cout << it+1 << " ";
}
}