#include "cielib.h" #include <vector> #include <iostream> using namespace std; int D; int R; int testDirection(int t[], int d) { if (t[d] > 0) { t[d]--; if (czyCieplo(t)) { return -1; } t[d]++; czyCieplo(t); } if (t[d] < R) { t[d]++; if (czyCieplo(t)) { return 1; } t[d]--; } czyCieplo(t); return 0; } void oneDCase(int t[]) { int low = 0; int high = R; t[0] = (low+high)/2; czyCieplo(t); while (low < high) { int dtest = testDirection(t, 0); if (dtest == 0) { break; } if (dtest < 0) { high = t[0]; t[0] = (low + high)/2; czyCieplo(t); } if (dtest > 0) { low = t[0]; t[0] = (low+high)/2; czyCieplo(t); } } znalazlem(t); } int testPoint(int t[]) { int allBetter = 1; for (int i = 0; i < D; ++i) { czyCieplo(t); if (t[i] > 0) { t[i]--; czyCieplo(t); t[i]++; allBetter &= czyCieplo(t); } if (t[i] < R) { t[i]++; czyCieplo(t); t[i]--; allBetter &= czyCieplo(t); } } return allBetter; } void twoDCase(int t[]) { for (int i = 0; i <= R; ++i) { for (int j = 0; j <= R; ++j) { t[0] = i; t[1] = j; if (testPoint(t)) { znalazlem(t); return; } } } } void restRec(int t[], int dd) { for (int i = 0; i < R; ++i) { t[dd] = i; if (dd+1 == D) { if (testPoint(t)) { znalazlem(t); } } else { restRec(t, dd+1); } } } int main() { D = podajD(); R = podajR(); int t[D]; for (int i = 0; i < D; ++i) t[i] = 0; czyCieplo(t); t[0]++; if (!czyCieplo(t)) { t[0]--; if (czyCieplo(t)) { znalazlem(t); return 0; } } t[0] = 0; czyCieplo(t); if (D == 1) { oneDCase(t); return 0; } if (D == 2) { twoDCase(t); return 0; } restRec(t, 0); }
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | #include "cielib.h" #include <vector> #include <iostream> using namespace std; int D; int R; int testDirection(int t[], int d) { if (t[d] > 0) { t[d]--; if (czyCieplo(t)) { return -1; } t[d]++; czyCieplo(t); } if (t[d] < R) { t[d]++; if (czyCieplo(t)) { return 1; } t[d]--; } czyCieplo(t); return 0; } void oneDCase(int t[]) { int low = 0; int high = R; t[0] = (low+high)/2; czyCieplo(t); while (low < high) { int dtest = testDirection(t, 0); if (dtest == 0) { break; } if (dtest < 0) { high = t[0]; t[0] = (low + high)/2; czyCieplo(t); } if (dtest > 0) { low = t[0]; t[0] = (low+high)/2; czyCieplo(t); } } znalazlem(t); } int testPoint(int t[]) { int allBetter = 1; for (int i = 0; i < D; ++i) { czyCieplo(t); if (t[i] > 0) { t[i]--; czyCieplo(t); t[i]++; allBetter &= czyCieplo(t); } if (t[i] < R) { t[i]++; czyCieplo(t); t[i]--; allBetter &= czyCieplo(t); } } return allBetter; } void twoDCase(int t[]) { for (int i = 0; i <= R; ++i) { for (int j = 0; j <= R; ++j) { t[0] = i; t[1] = j; if (testPoint(t)) { znalazlem(t); return; } } } } void restRec(int t[], int dd) { for (int i = 0; i < R; ++i) { t[dd] = i; if (dd+1 == D) { if (testPoint(t)) { znalazlem(t); } } else { restRec(t, dd+1); } } } int main() { D = podajD(); R = podajR(); int t[D]; for (int i = 0; i < D; ++i) t[i] = 0; czyCieplo(t); t[0]++; if (!czyCieplo(t)) { t[0]--; if (czyCieplo(t)) { znalazlem(t); return 0; } } t[0] = 0; czyCieplo(t); if (D == 1) { oneDCase(t); return 0; } if (D == 2) { twoDCase(t); return 0; } restRec(t, 0); } |