标签:line string lin int type code space bsp span
1 #include<stdio.h> 2 #include<string.h> 3 #include<algorithm> 4 using namespace std; 5 typedef bitset<10000> bint; 6 inline bint plus(bint a,bint b){ 7 return b.any()?plus(a^b,(a&b)<<1):a; 8 } 9 inline bint mul(bint a,bint b){ 10 return b.any()?(b[0]?plus(a,mul(a<<1,b>>1)):mul(a<<1,b>>1)):0; 11 } 12 int main(){}
标签:line string lin int type code space bsp span
原文地址:https://www.cnblogs.com/tak-fate/p/13181170.html