1 秒131,072 kb
20 分
3 級題
給定乙個0-1串,請找到乙個盡可能長的子串,其中包含的0與1的個數相等。
收起
乙個字串,只包含01,長度不超過1000000。
一行乙個整數,最長的0與1的個數相等的子串的長度。
1011
2題解:將'0'看成-1,'1'看成1,用sum一直累加,當第一次出現某個值的時候,用map記錄其位置(意味著乙個週期的開始),當再出現這個值的話,就意味著週期的終點。
下標: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
字串: 0 1 0 1 1 1 1 1 0 1 0 1 0 1 0 1
sum: 0 -1 0 -1 0 1 2 3 4 3 4 3 4 3 4 3 4
#include#include#include#include#include#include#include#include#include#include#include#include#include#define eps (1e-8)
#define max 0x3f3f3f3f
#define u_max 1844674407370955161
#define l_max 9223372036854775807
#define i_max 2147483647
#define re register
#define pushup() tree[rt]=max(tree[rt<<1],tree[rt<<1|1])
#define nth(k,n) nth_element(a,a+k,a+n); // 將 第k大的放在k位
#define ko() for(int i=2;i<=n;i++) s=(s+k)%i // 約瑟夫
#define ok() v.erase(unique(v.begin(),v.end()),v.end()) // 排序,離散化
using namespace std;
inline int read()
while(c >= '0' & c <= '9') x = x * 10 + c - '0', c = getchar();
return x * f;
}typedef long long ll;
const double pi = atan(1.)*4.;
const int m=1e3+5;
const int n=1e6+5;
char s[n];
int main()
printf("%d\n",ans);
return 0;
}
1393 0和1相等串
給定乙個0 1串,請找到乙個盡可能長的子串,其中包含的0與1的個數相等。收起乙個字串,只包含01,長度不超過1000000。一行乙個整數,最長的0與1的個數相等的子串的長度。10112我發現腦洞一定要大,越大越好,不然有些辦法你想不出來,如果0和1的個數相等,我們要做的事情就是找到最長的區間 i 1...
1393 0和1相等串
1393 0和1相等串 基準時間限制 1 秒 空間限制 131072 kb 給定乙個0 1串,請找到乙個盡可能長的子串,其中包含的0與1的個數相等。input 乙個字串,只包含01,長度不超過1000000。output 一行乙個整數,最長的0與1的個數相等的子串的長度。input示例 1011ou...
51nod1393 0和1相等串 思維題
很好的思維題。維護乙個字首和,把0看做 1,一直加,記錄每種字首和首次出現的位置,當再次得到這個字首和,說明當前位置和首次出現位置之間0和1的個數一定相等,更新答案。因為直接字首和有負數,無法用陣列下標直接記錄,所以統一加乙個len include using namespace std const...