蓝桥杯2022年第十三届省赛真题-选数异或-暴力解法+以空间换时间 摘要:● 本题如果纯纯直接暴力逐个枚举遍历会超时,只能拿64分,所以可以**将已经判断过的区间保存起来加以利用**,以空间换时间,加快代码执行效率。 ● 用两个List将已经枚举得到结果后的区间分别保存起…… 题解列表 2023年03月27日 0 点赞 2 评论 585 浏览 评分:5.4
py最多82分此题 摘要:解题思路:注意事项:参考代码:n,m,x=map(int,input().split())a=[0]+list(map(int,input().split()))dp=[0]*100010hash=[…… 题解列表 2023年03月26日 0 点赞 0 评论 226 浏览 评分:4.7
动态规划,中规中矩。 摘要:解题思路:dp[i]表示下标在[dp[i],i]的元素集合符合条件,并且在[dp[i]+1,i]的元素集合不符合条件。也就是dp[i]是i作为右下标对应的最大左下标。所以只需判断l是否<=dp[r]即…… 题解列表 2022年11月22日 0 点赞 5 评论 2353 浏览 评分:8.1
动态规划-选数异或 摘要:动态规划求两数异或等于x的区间左端最大值 ```cpp #include #include using namespace std; typedef long long ll; con…… 题解列表 2022年05月13日 0 点赞 3 评论 1889 浏览 评分:6.7
震惊,缺少两行代码居然是ac和超时的区别!! 摘要:解题思路:注意事项:A^B=x成立时有A^x=B参考代码:#includeusing namespace std;int n,m,l,r,x;const int maxm=100003;int a[m…… 题解列表 2022年05月13日 0 点赞 1 评论 1294 浏览 评分:5.7