3766252727
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《求最小上升,那就让小的最晚出现,可是有问题,希望dalao指出》回复:
反着进行拓扑,有什么问题呢
```cpp #include using namespace std; int n , m; vector arr[510000]; vector ar[510000]; int indo[511000]; int indo2[510000]; void down(){ priority_queue , greate…
```cpp #include using namespace std; typedef long long ll; #define maxn 100000 struct node{ ll date, lazy; }; node tree[4*maxn+10]; ll date[maxn+10]; int n,m; v…
```cpp #include using namespace std; typedef long long ll; #define inf -1145141919810 struct node{ ll date,lazy1,lazy2 = inf; }; node tree[4010000]; ll date[101…
```cpp #include using namespace std; typedef unsigned long long ll; struct node{ ll date = 0, lazy = 0; }; node tree[4044444]; ll date[1011111]; int n ; void cr…
在讨论《警示后人(如果你WA 35pts 或 95pts)》回复:
@[colGem](luogu://user/775325) 这题就很坏,没给精度和范围
在讨论《警示后人(如果你WA 35pts 或 95pts)》回复:
@[colGem](luogu://user/775325) 那我怎么在不知道范围的情况下二分答案?
在讨论《感觉样例错了》回复:
@[ZCWzy](luogu://user/712005) 我还以为是加起来21分
在讨论《感觉是最简单的代码(首先你得会欧筛)》回复:
@[pingan20091119](luogu://user/406849) 干,没看到公告
其实可以化简为回文判断和欧筛。 首先进行欧筛 在进行回文判断 ***注。除了11,其他偶数位的都不是回文数 以下是代码 ```c #include #include #include #include #include bool isprime[100000010]; int via[6000010],k=0; voi…