题意:定义两种操作

  • 1 a ---- 向序列中插如一个元素a
  • 2 a b ---- 将序列的前a个元素[e1,e2,...,ea]重复b次插入到序列中

经过一列操作后,为处于某个位置p的元素是多少。数据范围共有105以内的操作,形成序列中的元素总个数大小不超过64bit长整型表示。

思考:只需要记录两种操作这些关键元素的位置,如果查询的坐标位置刚好是第一种产生的,那么直接就知道结果了;如果查询的是第二种操作产生的,它是由前a个元素重复b次而来,它来自前a个元素,依次递归向前找,直到找到第一种情况。

  1. 1 const int maxn = 100005;
  2. 2 __int64 pos[maxn];
  3. 3 __int64 val[maxn];
  4. 4 int flag[maxn];

可能用struct放到一起更直观一些。

flag用来标记,当前元素如果为1,则为第一种操作产生,pos此时记录当前元素位置,val记录当前元素的值。

flag为0时候,则为第二种操作产生,pos记录第二种操作开始的元素位置,val记录a,即序列的前a个元素,这个长度a。

知道这些我们就好办了,用二分,LowBound去找序列中查询元素位置在pos中的下界。然后根据flag来判断是否需要递归继续往下找,或是返回找到的结果。

  1. 1 __int64 GetResult(__int64 key) {
  2. 2 int l = 0, r = len-1;
  3. 3 while (l <= r) {
  4. 4 int m = (l+r) >> 1;
  5. 5 if (pos[m] == key) {
  6. 6 if (flag[m]) return val[m];
  7. 7 else return GetResult((key-pos[m]+1)%val[m] != 0 ? ((key-pos[m]+1)%val[m]) : val[m]);
  8. 8 } else if (pos[m] < key) {
  9. 9 l = m+1;
  10. 10 } else {
  11. 11 r = m-1;
  12. 12 }
  13. 13 }
  14. 14 return GetResult((key-pos[r]+1)%val[r] != 0 ? ((key-pos[r]+1)%val[r]) : val[r]);
  15. 15 }

下面是完整代码:

  1. 1 #define _CRT_SECURE_NO_DEPRECATE
  2. 2 #define _SECURE_SCL 0
  3. 3 #pragma comment(linker, "/STACK:66777216")
  4. 4 #include <algorithm>
  5. 5 #include <string>
  6. 6 #include <complex>
  7. 7 #include <cassert>
  8. 8 #include <memory>
  9. 9 #include <set>
  10. 10 #include <stack>
  11. 11 #include <map>
  12. 12 #include <list>
  13. 13 #include <deque>
  14. 14 #include <numeric>
  15. 15 #include <cctype>
  16. 16 #include <cstddef>
  17. 17 #include <vector>
  18. 18 #include <queue>
  19. 19 #include <iostream>
  20. 20 #include <iomanip>
  21. 21 #include <iterator>
  22. 22 #include <cmath>
  23. 23 #include <cstdio>
  24. 24 #include <cstdlib>
  25. 25 #include <sstream>
  26. 26 #include <fstream>
  27. 27 #include <ctime>
  28. 28 #include <cstring>
  29. 29 #include <functional>
  30. 30 #include <bitset>
  31. 31 using namespace std;
  32. 32
  33. 33 #if defined(_MSC_VER) || defined(__BORLANDC__)
  34. 34 typedef unsigned __int64 uint64;
  35. 35 typedef signed __int64 int64;
  36. 36 #else
  37. 37 typedef unsigned long long uint64;
  38. 38 typedef signed long long int64;
  39. 39 #endif
  40. 40 typedef vector<int> VI;
  41. 41 typedef vector<string> VS;
  42. 42 typedef pair<int,int> PII;
  43. 43 typedef pair<int64,int64> PLL;
  44. 44 typedef vector<int64> VL;
  45. 45
  46. 46 #define pb push_back
  47. 47 #define ppb pop_back
  48. 48 #define mp make_pair
  49. 49 #define fi first
  50. 50 #define se second
  51. 51 #define pii pair<int,int>
  52. 52 #define pdd pair<double,double>
  53. 53 #define FOR(i,a,b) for (int _n(b), i(a); i <= _n; i++)
  54. 54 #define FORD(i,a,b) for(int i=(a),_b=(b);i>=_b;i--)
  55. 55 #define all(c) (c).begin(), (c).end()
  56. 56 #define SORT(c) sort(all(c))
  57. 57 #define REP(i,n) FOR(i,1,(n))
  58. 58 #define REPT(i,n) FOR(i,0,(n)-1)
  59. 59 #define L(s) (int)((s).size())
  60. 60 #define C(a) memset((a),0,sizeof(a))
  61. 61 #define IOS ios::sync_with_stdio(false)
  62. 62
  63. 63 const double pi = 3.1415926535897932384626433832795028841971;
  64. 64 const double EPS = 1E-9;
  65. 65 const int64 INF64 = (int64)1E18;
  66. 66 const int INF = 1000000000;
  67. 67
  68. 68 static inline bool get(int &v) {
  69. 69 int s = 1, c;
  70. 70 while(!isdigit(c = getchar())&&c != '-')
  71. 71 if(c == EOF) break ;
  72. 72
  73. 73 if(c == EOF) return 0;
  74. 74 if(c == '-') s = 0 , v = 0;
  75. 75 else v = c^48;
  76. 76 for(;isdigit(c = getchar());v = (v << 1) + (v << 3) + (c ^ 48));
  77. 77 v = (s ? v : -v);
  78. 78 return 1 ;
  79. 79 }
  80. 80 int len = 0;
  81. 81 const int maxn = 100005;
  82. 82 __int64 pos[maxn];
  83. 83 __int64 val[maxn];
  84. 84 int flag[maxn];
  85. 85
  86. 86 __int64 GetResult(__int64 key) {
  87. 87 int l = 0, r = len-1;
  88. 88 while (l <= r) {
  89. 89 int m = (l+r) >> 1;
  90. 90 if (pos[m] == key) {
  91. 91 if (flag[m]) return val[m];
  92. 92 else return GetResult((key-pos[m]+1)%val[m] != 0 ? ((key-pos[m]+1)%val[m]) : val[m]);
  93. 93 } else if (pos[m] < key) {
  94. 94 l = m+1;
  95. 95 } else {
  96. 96 r = m-1;
  97. 97 }
  98. 98 }
  99. 99 return GetResult((key-pos[r]+1)%val[r] != 0 ? ((key-pos[r]+1)%val[r]) : val[r]);
  100. 100 }
  101. 101
  102. 102
  103. 103 void run() {
  104. 104 int m, n, op;
  105. 105 __int64 e, l, c, v = 1;
  106. 106 cin >> m;
  107. 107 FOR(i, 1, m) {
  108. 108 cin >> op;
  109. 109 if (op == 1) {
  110. 110 cin >> e;
  111. 111 pos[len] = v;
  112. 112 val[len] = e;
  113. 113 flag[len] = 1;
  114. 114 len += 1;
  115. 115 v++;
  116. 116 } else {
  117. 117 cin >> l >> c;
  118. 118 pos[len] = v;
  119. 119 val[len] = l;
  120. 120 flag[len] = 0;
  121. 121 v = l*c + pos[len];
  122. 122 len += 1;
  123. 123 }
  124. 124 }
  125. 125 __int64 key;
  126. 126 cin >> n;
  127. 127 FOR(i, 1, n) {
  128. 128 cin >> key;
  129. 129 cout << GetResult(key) << " ";
  130. 130 }
  131. 131 cout << endl;
  132. 132 }
  133. 133
  134. 134
  135. 135
  136. 136 int main() {
  137. 137 #ifdef __DEBUG__
  138. 138 freopen("test.in","r",stdin);
  139. 139 freopen("test.out","w",stdout);
  140. 140 time_t st = clock();
  141. 141 #endif
  142. 142 run();
  143. 143 #ifdef __DEBUG__
  144. 144 printf( "\n=============\n");
  145. 145 printf("Time: %.2lf sec\n",(clock()-st)/double(CLOCKS_PER_SEC));
  146. 146 #endif
  147. 147 return 0;
  148. 148 }

Codeforce 380A Sereja and Prefixes【二分】的更多相关文章

  1. codeforces 380A Sereja and Prefixes (递归)

    题目: A. Sereja and Prefixes time limit per test 1 second memory limit per test 256 megabytes input st ...

  2. Codeforces 380A - Sereja and Prefixes

    原题地址:http://codeforces.com/problemset/problem/380/A 让期末考试整的好久没有写题, 放假之后由于生病也没怎么做,新年的第一场CF也不是那么在状态,只过 ...

  3. codeforce 955c --Sad powers 思路+二分查找

    这一题的题意是   定义一个数,该数特点是为a的p次方 (a>0,p>1) 再给你n个询问,每个询问给出一个区间,求区间内该数的数目. 由于给出的询问数极大(10e5) 所以,容易想到应该 ...

  4. CF:Problem 426B - Sereja and Mirroring 二分或者分治

    这题解法怎么说呢,由于我是把行数逐步除以2暴力得到的答案,所以有点二分的意思,可是昨天琦神说是有点像分治的意思.反正总的来说:就是从大逐步细化找到最优答案. 可是昨晚傻B了.靠! 多写了点东西,然后就 ...

  5. [codeforce 975C] Valhalla Siege (二分)

    Examples input 5 5 1 2 1 2 1 3 10 1 1 1 output 3 5 4 4 3 input 4 4 1 2 3 4 9 1 10 6 output 1 4 4 1 N ...

  6. Codeforces Round #223 (Div. 2) C

    C. Sereja and Prefixes time limit per test 1 second memory limit per test 256 megabytes input standa ...

  7. Codeforces 381 简要题解

    做的太糟糕了...第一题看成两人都取最优策略,写了个n^2的dp,还好pre-test良心(感觉TC和CF的pretest还是很靠谱的),让我反复过不去,仔细看题原来是取两边最大的啊!!!前30分钟就 ...

  8. 2019牛客暑期多校训练营(第一场) A Equivalent Prefixes ( st 表 + 二分+分治)

    链接:https://ac.nowcoder.com/acm/contest/881/A 来源:牛客网 Equivalent Prefixes 时间限制:C/C++ 2秒,其他语言4秒 空间限制:C/ ...

  9. codeforce 359D 二分+ 动态规划(sparse table)

    原题链接:http://codeforces.com/problemset/problem/359/D 思路:首先对符合题目的长度(r-l)从0到n-1进行二分查找,对每一个长度进行check,看是否 ...

随机推荐

  1. 在微信小程序开发中使用Typescript

    Typescript的优势咱不需要赘述太多,有兴趣可以参考(https://www.typescriptlang.org/).今天给大家分享一下如何在微信小程序(或者其他同类小程序)开发中使用Type ...

  2. 记一次flask上传文件返回200前端却504的问题

    前言 好久没写了, 主要是太忙了, 本篇记一下今天解决的一个问题吧, 耗了我大半天的时间才解决 问题 今天在调试代码时, 发现了一个诡异的问题, 我之前写了一个接口, 作用是接收上传的文件, 因为这个 ...

  3. Nginx 安装与配置教程

    标签: Nginx Linux Windows 配置 描述: Ubuntu 下以及 Windows 下 Nginx 的配置:配置详解:有关 Nginx 如何配置 Nginx 在 Ubuntu 下的安装 ...

  4. Test typora

    目录 0. test 0.5 easy test 1. problem 1 2. problem 2 3. problem 3 import numpy as np import matplotlib ...

  5. SDUST数据结构 - chap1 绪论

    一.判断题: 二.选择题:                          

  6. Kubernetes CoreDNS 状态是 CrashLoopBackOff 报错

    查看状态的时候,遇见coredns出现crashlookbackoff,首先我们来进行排错,不管是什么原因,查看coredns的详细信息,以及logs [root@k8s-master coredns ...

  7. Linux下nginx的安装以及环境配置

    参考链接 https://blog.csdn.net/qq_42815754/article/details/82980326 环境: centos7 .nginx-1.9.14 1.下载 并解压  ...

  8. MYSQL基础知识的复习2

    1.修改表中的数据 update 表名 set 要修改的字段 where 条件;-- 如果修改多个字段那么字段和字段之间用逗号隔开 2.查询(很重要) 1.查询表中部分字段: select 字段名,字 ...

  9. scrapy框架的中间件

    中间件的使用 作用:拦截所有的请求和响应 拦截请求:process_request拦截正常的请求,process_exception拦截异常的请求 篡改请求的头信息 def process_reque ...

  10. ModelForm的基本用法:

    一.ModelForm的基本用法示例: from django import forms from app01 import models class BookModelForm(forms.Mode ...