Advertisement
erfanul007

LA 7002

Jul 25th, 2020
1,214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 4.81 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. // #include <iostream>
  3. // #include <cstdio>
  4. // #include <cstdlib>
  5. // #include <algorithm>
  6. // #include <cmath>
  7. // #include <vector>
  8. // #include <set>
  9. // #include <map>
  10. // #include <queue>
  11. // #include <ctime>
  12. // #include <cassert>
  13. // #include <complex>
  14. // #include <string>
  15. // #include <cstring>
  16. // #include <queue>
  17. // #include <bitset>
  18.  
  19. using namespace std;
  20.  
  21. // #pragma GCC optimize("Ofast,no-stack-protector")
  22. // #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
  23. // #pragma GCC optimize("unroll-loops")
  24.  
  25.  
  26. #define ll              long long int
  27. #define vi              vector< int >
  28. #define vll             vector< ll >
  29.  
  30. #define sc              scanf
  31. #define pf              printf
  32. #define cspf(i)         pf("Case %d: ", i)
  33. #define spc             pf(" ")
  34. #define line            pf("\n")
  35.  
  36. #define ff              first
  37. #define ss              second
  38. #define mp              make_pair
  39. #define pb              push_back
  40. #define ppb             pop_back
  41. #define tp(v,j)         get<j>(v)
  42. #define Log(b,x)        (log(x)/log(b))
  43.  
  44. #define FOR(i,x,y)      for(int i = int(x); i < int(y); i++)
  45. #define ROF(i,x,y)      for(int i = int(x)-1; i >= int(y); i--)
  46. #define clr(arr,x)      memset(arr, x, sizeof arr)
  47. #define vout(v,sz)      for(int w=0;w<sz;w++){if(w) spc; cout<<v[w];}
  48. #define all(v)          v.begin(), v.end()
  49. #define rall(v)         v.rbegin(), v.rend()
  50. #define unq(v)          sort(all(v)),(v).resize(unique(all(v))-v.begin())
  51. #define fastIO          ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr)
  52.  
  53. #define sc1(x)          sc("%d",&x)
  54. #define sc2(x,y)        sc("%d %d", &x, &y)
  55. #define sc3(x,y,z)      sc("%d %d %d", &x, &y, &z)
  56. #define scl1(x)         sc("%lld",&x);
  57. #define scl2(x,y)       sc("%lld %lld", &x, &y)
  58. #define scf1(x)         sc("%lf",&x)
  59. #define scf2(x,y)       sc("%lf %lf", &x, &y)
  60.  
  61. #define pf1(x)          pf("%d",x)
  62. #define pf2(x,y)        pf("%d %d", x, y)
  63. #define pf3(x,y,z)      pf("%d %d %d", x, y, z)
  64. #define pfl1(x)         pf("%lld",x)
  65. #define pfl2(x,y)       pf("%lld %lld",x,y)
  66.  
  67. #define MOD             (ll)(1e9+7)
  68. #define MaxN            (int)(1e7+2)
  69. #define inf             0x3f3f3f3f
  70. #define PI              acos(-1.0)  // 3.1415926535897932
  71. #define eps             1e-9
  72.  
  73. template <class T> inline T bigMod(T p,T e,T M){T ret=1; for(;e>0;e>>=1){ if(e&1) ret=(ret*p)%M; p=(p*p)%M;} return (T)ret;}
  74. template <class T> inline T modInverse(T a,T M){return bigMod(a,M-2,M);}
  75. template <class T> inline T gcd(T a,T b){if(b==0)return a;return gcd(b,a%b);}
  76. template <class T> inline T lcm(T a,T b) {a=abs(a);b=abs(b); return (a/gcd(a,b))*b;}
  77. template <class T> inline T SQR(T a){return a*a;}
  78.  
  79. int dx[] = { 1,-1, 0, 0};                //graph moves
  80. int dy[] = { 0, 0, 1,-1};               //graph moves
  81. int kx[] = {-2,-2,-1,-1, 1, 1, 2, 2};  // Knights Move
  82. int ky[] = {-1, 1,-2, 2,-2, 2,-1, 1}; // Knights Move
  83. int QHx[]= { 1,-1, 0, 0, 1, 1,-1,-1,-2,-2,-1,-1, 1, 1, 2, 2}; //Queen+Knight
  84. int QHy[]= { 0, 0, 1,-1, 1,-1, 1,-1,-1, 1,-2, 2,-2, 2,-1, 1}; //Queen+Knight
  85.  
  86. int vis[20][20],n,w, cnt;
  87.  
  88. void markvis(int r, int c){
  89.     bool f=true;
  90.     int k=0;
  91.     vis[r][c]++;
  92.     while(f){
  93.         k++;
  94.         f=false;
  95.         for(int i=0; i<16; i++){
  96.             int x = r+(QHx[i]*k);
  97.             int y = c+(QHy[i]*k);
  98.             if(x<0 || x>=n || y<0 || y>=n) continue;
  99.             vis[x][y]++;
  100.             f=true;
  101.         }
  102.     }
  103. }
  104.  
  105. void unmarkvis(int r, int c){
  106.     bool f=true;
  107.     int k=0;
  108.     vis[r][c]--;
  109.     while(f){
  110.         k++;
  111.         f=false;
  112.         for(int i=0; i<16; i++){
  113.             int x = r+(QHx[i]*k);
  114.             int y = c+(QHy[i]*k);
  115.             if(x<0 || x>=n || y<0 || y>=n) continue;
  116.             vis[x][y]--;
  117.             f=true;
  118.         }
  119.     }
  120. }
  121.  
  122. int BT(int x){
  123.     int mx = x;
  124.     for(int i=0; i<n; i++){
  125.         for(int j=0; j<n; j++){
  126.             if(vis[i][j]) continue;
  127.             markvis(i,j);
  128.             mx = max(mx, BT(x+1));
  129.             unmarkvis(i,j);
  130.         }
  131.     }
  132.     return mx;
  133. }
  134.  
  135. void BTways(int x, int r){
  136.     if(x==w){
  137.         cnt++;
  138.         return;
  139.     }
  140.     for(int i=r; i<n; i++){
  141.         for(int j=0; j<n; j++){
  142.             if(vis[i][j]) continue;
  143.             markvis(i, j);
  144.             BTways(x+1, i);
  145.             unmarkvis(i, j);
  146.         }
  147.     }
  148. }
  149.  
  150.  
  151.  
  152. int main(){
  153.  
  154.     #ifndef ONLINE_JUDGE
  155.         clock_t tStart = clock();
  156.         freopen("input.txt", "r", stdin);
  157.         freopen("output.txt", "w", stdout);
  158.     #endif
  159.  
  160.    
  161.     int t; sc1(t);
  162.  
  163.     while(t--){
  164.         clr(vis, 0);
  165.         sc1(n);
  166.         int m; sc1(m);
  167.         for(int i=0; i<m; i++){
  168.             int a,b; sc2(a,b);
  169.             markvis(a,b);
  170.         }
  171.         w = BT(m);
  172.         cnt=0;
  173.         BTways(m, 0);
  174.         pf2(w,cnt);
  175.         line;
  176.     }
  177.    
  178.    
  179.  
  180.     #ifndef ONLINE_JUDGE
  181.         fprintf(stderr, "\n>> Runtime: %.10fs\n", (double) (clock() - tStart) / CLOCKS_PER_SEC);
  182.     #endif
  183.  
  184.     return 0;
  185. }
  186.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement