#include <iostream> #include <fstream> #include <algorithm> #include <set> using namespace std; struct Wym{ long long a; long long b; void upr(){ long long d = __gcd(a, b); a/=d; b/=d; } void operator+=(const Wym& Prawy){ a*=Prawy.b; a+=Prawy.a*b; b*=Prawy.b; upr(); } void operator-=(const Wym& Prawy){ a*=Prawy.b; a-=Prawy.a*b; b*=Prawy.b; upr(); } void operator*=(const Wym& Prawy){ a*=Prawy.a; b*=Prawy.b; upr(); } void operator*=(int Prawy){ a*=Prawy; upr(); } void operator-=(int Prawy){ a-=b*Prawy; } void operator/=(const Wym& Prawy){ a*=Prawy.b; b*=Prawy.a; upr(); } void operator/=(int Prawy){ b*=Prawy; upr(); } void operator=(const Wym& Prawy){ a=Prawy.a; b=Prawy.b; } void operator=(long long Prawy){ a=Prawy; b=1; } Wym(){} Wym(int weja, int wejb){ a=weja; b=wejb; upr(); } Wym operator+(const Wym& Prawy) const{ Wym zwrot; zwrot = *this; zwrot+=Prawy; return zwrot; } Wym operator-(const Wym& Prawy) const{ Wym zwrot; zwrot = *this; zwrot-=Prawy; return zwrot; } Wym operator*(const Wym& Prawy) const{ Wym zwrot; zwrot = *this; zwrot*=Prawy; return zwrot; } Wym operator*(int Prawy) const{ Wym zwrot; zwrot = *this; zwrot*=Prawy; return zwrot; } Wym operator/(const Wym& Prawy) const{ Wym zwrot; zwrot = *this; zwrot/=Prawy; return zwrot; } Wym operator/(int Prawy) const{ Wym zwrot; zwrot = *this; zwrot/=Prawy; return zwrot; } bool operator>(const Wym& Prawy) const{ return a*Prawy.b > Prawy.a * b; } bool operator>=(const Wym& Prawy) const{ return a*Prawy.b >= Prawy.a * b; } bool operator<(const Wym& Prawy) const{ return a*Prawy.b < Prawy.a * b; } bool operator<=(const Wym& Prawy) const{ return a*Prawy.b <= Prawy.a * b; } bool operator==(const Wym& Prawy) const{ return a*Prawy.b == Prawy.a * b; } bool operator!=(const Wym& Prawy) const{ return a*Prawy.b != Prawy.a * b; } void wypisz() const{ cout << a; if(b!=1) cout << "/" << b; } }; void analiza(){ int wsk=1; set<pair<Wym, int>> rozw; set<pair<Wym, int>> rozw2; Wym x; x=24; Wym zero; zero=0; for(int i=4; i>=1; i--){ rozw.insert(pair<Wym, int>(x, i)); } while(!rozw.empty()){ //cout << rozw.size() << endl; Wym krok; krok=100; for(auto it=rozw.begin(); it!=rozw.end(); it++) { Wym zmpom = (*it).first/(*it).second; if(zmpom<krok) krok=zmpom; /*(*it).first.wypisz(); cout << " " << (*it).second;// << endl; cout << " "; krok.wypisz(); cout << endl;*/ } rozw2.clear(); for(auto it=rozw.begin(); it!=rozw.end(); it++) { Wym zmpom = (*it).first - krok * (*it).second; if(zmpom!=zero) for(int i=(*it).second; i>=1; i--) rozw2.insert(pair<Wym, int>(zmpom, i)); } rozw.clear(); for(auto it=rozw2.begin(); it!=rozw2.end(); it++) rozw.insert(*it); cout <<wsk<< " ----------- "; krok.wypisz(); cout << endl; wsk++; } } void wczytaj(int (&tab)[200][200], int& n, int &m){ scanf("%d %d", &n, &m); /* tab = new int*[n]; for(int i=0; i<n; i++) tab[i] = new int[m]; */ for(int i=0; i<n; i++) for(int j=0; j<m; j++){ char c; scanf("%c", &c); while(c!='.' && c!='O' && c!='?') scanf("%c", &c); if(c=='.') tab[i][j]=0; else if(c=='?') tab[i][j]=12; else tab[i][j]=24; } } long long napale(int(&tab)[200][200], int n, int m){ int kroki[10]={6, 2, 1, 1, 2, 2, 1, 1, 2, 6}; int grad[200][200]; /* for(int i=0; i<n; i++) for(int j=0; j<m; j++) tab[i][j]*=24; */ int Iit=0; bool czykon=1; while(czykon){ czykon=0; for(int i=0; i<n; i++) for(int j=0; j<m; j++){ grad[i][j]=0; if(tab[i][j]){ if(i-1>=0 && tab[i-1][j]) grad[i][j]++; if(j-1>=0 && tab[i][j-1]) grad[i][j]++; if(i+1<n && tab[i+1][j]) grad[i][j]++; if(j+1<m && tab[i][j+1]) grad[i][j]++; if(grad[i][j]) czykon=1; } } for(int i=0; i<n; i++) for(int j=0; j<m; j++) tab[i][j]-=grad[i][j]*kroki[Iit]; Iit++; } long long zw=0; for(int i=0; i<n; i++) for(int j=0; j<m; j++) zw+=tab[i][j]; return zw; } void napale2(const int(&tab)[200][200], int n, int m){ int tab2[200][200]; pair<int, int> pytajki[10]; int it=0; for(int i=0; i<n; i++) for(int j=0; j<m; j++) if(tab[i][j]==12){ if(it>=10) return; pytajki[it] = pair<int, int>(i, j); it++; } //cout << it << endl; unsigned zakres = (1<<it); long long zwrot = 0; for(int msk=0; msk<zakres; msk++){ for(int i=0; i<n; i++) for(int j=0; j<m; j++) tab2[i][j]=tab[i][j]; for(int i=0; i<it; i++) if(msk & (1<<i)) tab2[pytajki[i].first][pytajki[i].second]=24; else tab2[pytajki[i].first][pytajki[i].second]=0; zwrot+=napale(tab2, n, m); } zakres*=24; long long d = __gcd(zwrot, (long long) zakres); zwrot/=d; zakres/=d; printf("%lld/%lld", zwrot, (long long) zakres); } int zmianaznakux8(int a, int b){ if(a==12 || b==12) return 4; if(a==b) return 0; return 8; } void napale3(int (&tab)[200][200], int n, int m){ long long wynik=0; } int main() { int n, m; int tab[200][200]; wczytaj(tab, n, m); napale2(tab, n, m); return 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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | #include <iostream> #include <fstream> #include <algorithm> #include <set> using namespace std; struct Wym{ long long a; long long b; void upr(){ long long d = __gcd(a, b); a/=d; b/=d; } void operator+=(const Wym& Prawy){ a*=Prawy.b; a+=Prawy.a*b; b*=Prawy.b; upr(); } void operator-=(const Wym& Prawy){ a*=Prawy.b; a-=Prawy.a*b; b*=Prawy.b; upr(); } void operator*=(const Wym& Prawy){ a*=Prawy.a; b*=Prawy.b; upr(); } void operator*=(int Prawy){ a*=Prawy; upr(); } void operator-=(int Prawy){ a-=b*Prawy; } void operator/=(const Wym& Prawy){ a*=Prawy.b; b*=Prawy.a; upr(); } void operator/=(int Prawy){ b*=Prawy; upr(); } void operator=(const Wym& Prawy){ a=Prawy.a; b=Prawy.b; } void operator=(long long Prawy){ a=Prawy; b=1; } Wym(){} Wym(int weja, int wejb){ a=weja; b=wejb; upr(); } Wym operator+(const Wym& Prawy) const{ Wym zwrot; zwrot = *this; zwrot+=Prawy; return zwrot; } Wym operator-(const Wym& Prawy) const{ Wym zwrot; zwrot = *this; zwrot-=Prawy; return zwrot; } Wym operator*(const Wym& Prawy) const{ Wym zwrot; zwrot = *this; zwrot*=Prawy; return zwrot; } Wym operator*(int Prawy) const{ Wym zwrot; zwrot = *this; zwrot*=Prawy; return zwrot; } Wym operator/(const Wym& Prawy) const{ Wym zwrot; zwrot = *this; zwrot/=Prawy; return zwrot; } Wym operator/(int Prawy) const{ Wym zwrot; zwrot = *this; zwrot/=Prawy; return zwrot; } bool operator>(const Wym& Prawy) const{ return a*Prawy.b > Prawy.a * b; } bool operator>=(const Wym& Prawy) const{ return a*Prawy.b >= Prawy.a * b; } bool operator<(const Wym& Prawy) const{ return a*Prawy.b < Prawy.a * b; } bool operator<=(const Wym& Prawy) const{ return a*Prawy.b <= Prawy.a * b; } bool operator==(const Wym& Prawy) const{ return a*Prawy.b == Prawy.a * b; } bool operator!=(const Wym& Prawy) const{ return a*Prawy.b != Prawy.a * b; } void wypisz() const{ cout << a; if(b!=1) cout << "/" << b; } }; void analiza(){ int wsk=1; set<pair<Wym, int>> rozw; set<pair<Wym, int>> rozw2; Wym x; x=24; Wym zero; zero=0; for(int i=4; i>=1; i--){ rozw.insert(pair<Wym, int>(x, i)); } while(!rozw.empty()){ //cout << rozw.size() << endl; Wym krok; krok=100; for(auto it=rozw.begin(); it!=rozw.end(); it++) { Wym zmpom = (*it).first/(*it).second; if(zmpom<krok) krok=zmpom; /*(*it).first.wypisz(); cout << " " << (*it).second;// << endl; cout << " "; krok.wypisz(); cout << endl;*/ } rozw2.clear(); for(auto it=rozw.begin(); it!=rozw.end(); it++) { Wym zmpom = (*it).first - krok * (*it).second; if(zmpom!=zero) for(int i=(*it).second; i>=1; i--) rozw2.insert(pair<Wym, int>(zmpom, i)); } rozw.clear(); for(auto it=rozw2.begin(); it!=rozw2.end(); it++) rozw.insert(*it); cout <<wsk<< " ----------- "; krok.wypisz(); cout << endl; wsk++; } } void wczytaj(int (&tab)[200][200], int& n, int &m){ scanf("%d %d", &n, &m); /* tab = new int*[n]; for(int i=0; i<n; i++) tab[i] = new int[m]; */ for(int i=0; i<n; i++) for(int j=0; j<m; j++){ char c; scanf("%c", &c); while(c!='.' && c!='O' && c!='?') scanf("%c", &c); if(c=='.') tab[i][j]=0; else if(c=='?') tab[i][j]=12; else tab[i][j]=24; } } long long napale(int(&tab)[200][200], int n, int m){ int kroki[10]={6, 2, 1, 1, 2, 2, 1, 1, 2, 6}; int grad[200][200]; /* for(int i=0; i<n; i++) for(int j=0; j<m; j++) tab[i][j]*=24; */ int Iit=0; bool czykon=1; while(czykon){ czykon=0; for(int i=0; i<n; i++) for(int j=0; j<m; j++){ grad[i][j]=0; if(tab[i][j]){ if(i-1>=0 && tab[i-1][j]) grad[i][j]++; if(j-1>=0 && tab[i][j-1]) grad[i][j]++; if(i+1<n && tab[i+1][j]) grad[i][j]++; if(j+1<m && tab[i][j+1]) grad[i][j]++; if(grad[i][j]) czykon=1; } } for(int i=0; i<n; i++) for(int j=0; j<m; j++) tab[i][j]-=grad[i][j]*kroki[Iit]; Iit++; } long long zw=0; for(int i=0; i<n; i++) for(int j=0; j<m; j++) zw+=tab[i][j]; return zw; } void napale2(const int(&tab)[200][200], int n, int m){ int tab2[200][200]; pair<int, int> pytajki[10]; int it=0; for(int i=0; i<n; i++) for(int j=0; j<m; j++) if(tab[i][j]==12){ if(it>=10) return; pytajki[it] = pair<int, int>(i, j); it++; } //cout << it << endl; unsigned zakres = (1<<it); long long zwrot = 0; for(int msk=0; msk<zakres; msk++){ for(int i=0; i<n; i++) for(int j=0; j<m; j++) tab2[i][j]=tab[i][j]; for(int i=0; i<it; i++) if(msk & (1<<i)) tab2[pytajki[i].first][pytajki[i].second]=24; else tab2[pytajki[i].first][pytajki[i].second]=0; zwrot+=napale(tab2, n, m); } zakres*=24; long long d = __gcd(zwrot, (long long) zakres); zwrot/=d; zakres/=d; printf("%lld/%lld", zwrot, (long long) zakres); } int zmianaznakux8(int a, int b){ if(a==12 || b==12) return 4; if(a==b) return 0; return 8; } void napale3(int (&tab)[200][200], int n, int m){ long long wynik=0; } int main() { int n, m; int tab[200][200]; wczytaj(tab, n, m); napale2(tab, n, m); return 0; } |