zoukankan      html  css  js  c++  java
  • CF1320D Reachable Strings [字符串哈希]

    我们发现0是不能跨越区间的,且奇偶性不变,那么我们就分类讨论一下左端点开始的位置
    奇数位当0处理,偶数位当1处理QAQ

    // powered by c++11
    // by Isaunoya
    #include <bits/stdc++.h>
    #define rep(i, x, y) for (register int i = (x); i <= (y); ++i)
    #define Rep(i, x, y) for (register int i = (x); i >= (y); --i)
    using namespace std;
    using db = double;
    using ll = long long;
    using uint = unsigned int;
    #define Tp template
    using pii = pair<int, int>;
    #define fir first
    #define sec second
    Tp<class T> void cmax(T& x, const T& y) {if (x < y) x = y;} Tp<class T> void cmin(T& x, const T& y) {if (x > y) x = y;}
    #define all(v) v.begin(), v.end()
    #define sz(v) ((int)v.size())
    #define pb emplace_back
    Tp<class T> void sort(vector<T>& v) { sort(all(v)); } Tp<class T> void reverse(vector<T>& v) { reverse(all(v)); }
    Tp<class T> void unique(vector<T>& v) { sort(all(v)), v.erase(unique(all(v)), v.end()); }
    const int SZ = 1 << 23 | 233;
    struct FILEIN { char qwq[SZ], *S = qwq, *T = qwq, ch;
    #ifdef __WIN64
    #define GETC getchar
    #else
      char GETC() { return (S == T) && (T = (S = qwq) + fread(qwq, 1, SZ, stdin), S == T) ? EOF : *S++; }
    #endif
      FILEIN& operator>>(char& c) {while (isspace(c = GETC()));return *this;}
      FILEIN& operator>>(string& s) {while (isspace(ch = GETC())); s = ch;while (!isspace(ch = GETC())) s += ch;return *this;}
      Tp<class T> void read(T& x) { bool sign = 0;while ((ch = GETC()) < 48) sign ^= (ch == 45); x = (ch ^ 48);
        while ((ch = GETC()) > 47) x = (x << 1) + (x << 3) + (ch ^ 48); x = sign ? -x : x;
      }FILEIN& operator>>(int& x) { return read(x), *this; } FILEIN& operator>>(ll& x) { return read(x), *this; }
    } in;
    struct FILEOUT {const static int LIMIT = 1 << 22 ;char quq[SZ], ST[233];int sz, O;
      ~FILEOUT() { flush() ; }void flush() {fwrite(quq, 1, O, stdout); fflush(stdout);O = 0;}
      FILEOUT& operator<<(char c) {return quq[O++] = c, *this;}
      FILEOUT& operator<<(string str) {if (O > LIMIT) flush();for (char c : str) quq[O++] = c;return *this;}
      Tp<class T> void write(T x) {if (O > LIMIT) flush();if (x < 0) {quq[O++] = 45;x = -x;}
    		do {ST[++sz] = x % 10 ^ 48;x /= 10;} while (x);while (sz) quq[O++] = ST[sz--];
      }FILEOUT& operator<<(int x) { return write(x), *this; } FILEOUT& operator<<(ll x) { return write(x), *this; }
    } out;
    #define int long long
    
    mt19937 rnd(chrono :: steady_clock :: now().time_since_epoch().count()) ;
    
    const int maxn = 2e5 + 52 ;
    const int bs = rnd() % 19260817 | 3 ;
    const int mod = 1213153189 ;
    int n ;
    char a[maxn] ;
    int p[maxn] ;
    int cnt[maxn] , h1[maxn] , h2[maxn] ;
    int qry(int l , int r) {
    	if(l & 1) 
    		return (h1[r] - h1[l - 1] * p[cnt[r] - cnt[l - 1]] % mod + mod) % mod ;
    	else
    		return (h2[r] - h2[l - 1] * p[cnt[r] - cnt[l - 1]] % mod + mod) % mod ;
    }
    
    signed main() {
      // code begin.
    	scanf("%lld" , & n) ;
    	scanf("%s" , a + 1) ;
    	p[0] = 1 ;
    	for(int i = 1 ; i <= n ; i ++) {
    		p[i] = p[i - 1] * bs % mod ;
    		cnt[i] = cnt[i - 1] + (a[i] == '0') ;
    		if(a[i] == '0') {
    			h1[i] = (h1[i - 1] * bs + (i & 1) + 1) % mod ;
    			h2[i] = (h2[i - 1] * bs + (i & 1 ^ 1) + 1) % mod ;
    		}
    		else {
    			h1[i] = h1[i - 1] ;
    			h2[i] = h2[i - 1] ;
    		}
    	}
    	int q ;
    	scanf("%lld" , & q) ;
    	while(q --) {
    		int l , r , len ;
    		scanf("%lld %lld %lld" , & l , & r , & len) ;
    		if(qry(l , l + len - 1) == qry(r , r + len - 1)) 
    			out << "Yes" << '
    ' ;
    		else 
    			out << "No" << '
    ' ;
    	}
    	return 0;
      // code end.
    }
    
  • 相关阅读:
    【springboot】 springboot整合quartz实现定时任务
    Map集合的四种遍历方式
    WCF自引用和循环引用导致的序列化问题
    c#反射
    小助手配置文件列表页
    WPF数据绑定(ItemTemplate和DataTemplate)
    TankMapData
    手机qq协议做的第三方qq软件
    WPF MVVM模式学习
    小助手(应用盒子之我的实现思路及示例程序)
  • 原文地址:https://www.cnblogs.com/Isaunoya/p/12411331.html
Copyright © 2011-2022 走看看