提交记录 36432


用户 题目 状态 得分 用时 内存 语言 代码长度
saffah_dsh_260814 wc2017b2. 【WC2017】挑战-任务2 Time Limit Exceeded 50 3 s 4940 KB C 1.69 KB
提交时间 评测时间
2026-08-15 02:51:46 2026-08-15 02:51:52
// Correct 32-bit-safe bitset. Use uint64_t (NOT unsigned long!) because
// the WC2017 problems run in 32-bit mode on duck.ac, where unsigned long == 4 bytes.
#include <stdint.h>
#include <stdlib.h>

typedef uint64_t u64;

static u64 *b1[3], *b2[3];

static inline int popc(u64 x){ return __builtin_popcountll(x); }

static unsigned count_query(int x, int y, int l){
  long long d = (long long)y - x;
  int off = (int)(d & 63);
  int woff = (int)(d >> 6);
  unsigned ans = 0;
  int w_start = x >> 6, boff = x & 63;
  int end = x + l;
  int w_end = (end - 1) >> 6, beoff = (end - 1) & 63;
  u64 *A0=b1[0], *A1=b1[1], *A2=b1[2];
  u64 *B0=b2[0], *B1=b2[1], *B2=b2[2];
  for(int w=w_start; w<=w_end; w++){
    int wb = w + woff;
    u64 a0=A0[w], a1=A1[w], a2=A2[w];
    u64 sb0,sb1,sb2;
    if(off){
      sb0=(B0[wb+1]<<(64-off))|(B0[wb]>>off);
      sb1=(B1[wb+1]<<(64-off))|(B1[wb]>>off);
      sb2=(B2[wb+1]<<(64-off))|(B2[wb]>>off);
    } else {
      sb0=B0[wb]; sb1=B1[wb]; sb2=B2[wb];
    }
    u64 win=(a0&sb1)|(a1&sb2)|(a2&sb0);
    if(w==w_start) win &= (~0ULL)<<boff;
    if(w==w_end && beoff!=63) win &= ((1ULL<<(beoff+1))-1);
    ans += popc(win);
  }
  return ans;
}

void solve(int n, int q, char *s1, char *s2, int *q_x, int *q_y, int *q_len, unsigned *ans){
  int NW = (n+63)/64 + 4;
  for(int a=0;a<3;a++){ b1[a] = calloc(NW, 8); b2[a] = calloc(NW, 8); }
  b1[0]+=2; b1[1]+=2; b1[2]+=2; b2[0]+=2; b2[1]+=2; b2[2]+=2;
  for(int i=0;i<n;i++){
    int a=(unsigned char)s1[i]; if(a>2)a-='0';
    int b=(unsigned char)s2[i]; if(b>2)b-='0';
    if(a>=0 && a<=2) b1[a][i>>6]|=1ULL<<(i&63);
    if(b>=0 && b<=2) b2[b][i>>6]|=1ULL<<(i&63);
  }
  for(int qi=0; qi<q; qi++) ans[qi] = count_query(q_x[qi], q_y[qi], q_len[qi]);
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #1228.11 us40 KBAcceptedScore: 50

Testcase #23 s4 MB + 844 KBTime Limit ExceededScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2026-09-07 05:41:33 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠