Pandas2.2 Series
Plotting
方法描述Series.plot([kind, ax, figsize, …])用于绘制 Series 对象的数据可视化图表Series.plot.area([x, y, stacked])用于绘制堆叠面积图(Stacked Area Plot)Series.plot.bar([x, y])用于绘制垂直条形图(Ver…
题目来自洛谷网站: 暴力思路:
先进性预处理,找到每个点位置的前缀异或和,在枚举区间。
暴力代码:
#include<bits/stdc.h>
#define int long long
using namespace std;
const int N 1e520;int n;
int arr[N…