这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《玄关求条,90分》回复:
@[Amity_L](luogu://user/1496685) csp复赛能用__int128吗
在讨论《玄关求条,90分》回复:
@[Amity_L](luogu://user/1496685) 感谢,已关
在讨论《玄关求条,90分》回复:
@[Amity_L](luogu://user/1496685)@[Featheraus_](luogu://user/678057) 明白了,已关
在讨论《玄关求条,90分》回复:
@[ChineseDragon_eatsun](luogu://user/1253431) 为什么
```cpp #include using namespace std; unsigned long long k,n; unsigned long long dfs (unsigned long long x,unsigned long long y) { if(x==1ull) { if(y==1ull) retu…
在讨论《矩阵快速幂90分求调(AC必关注)》回复:
@[wangziyi0822](luogu://user/1411886)感谢,已关
```cpp #include using namespace std; #define int long long const int mod=1e9+7; struct matrix { int a[5][5]; }; matrix mul (matrix x,matrix y) { matrix c; memse…
在讨论《90》回复:
第六行n%7==0改成n%7!=0
在讨论《80分求调!》回复:
举个例子 adadadd 正确的minn应该是3 而mp["a"]中的值依次是1,2,3,minn变成了1
在讨论《80分求调!》回复:
你的minn有问题,要在全部统计完后算,要不然会比实际小,我帮你改了一下,已AC,如果对你有帮助,请关注 ```cpp #include using namespace std; typedef long long ll; const ll N=1e3+5; map mp; bool check(ll n){ if(n…
在讨论《20分求助!!!》回复:
```cpp #include #include using namespace std; int sum(int sum1) //这里改用递归 { if(sum1>9) { int t=0; while(sum1>0) { t+=sum1%10; sum1/=10; } return sum(t); //不满足条件就…
#3自己测试没问题,就是死活过不了 ```cpp #include using namespace std; map > m; int n; int main() { cin>>n; for(int i=0;i ='A'&&u[k] ='A'&&s[i] >::iterator it; for(it=m.begin()…
在讨论《玄关,求调(普及+/提高)》回复:
感谢,已关
在讨论《玄关,求调》回复:
感谢,已关
```cpp #include using namespace std; int dp[32001],n,m,v[61],p[61],q[61]; int main() { //freopen("budget.in","r",stdin); //freopen("budget.out","w",stdout); cin…
在讨论《听取WA声一片~》回复:
求关注 ```cpp #include #include using namespace std; int m[10005]; int main(){ int n,k; cin>>n>>k; for(int i=0;i >m[i]; } int cnt=0; sort(m,m+n); //从小到大排序 for(int…
```cpp #include using namespace std; map > m; int n; int main() { cin>>n; for(int i=0;i ='A'&&u[k] ='A'&&s[i] >::iterator it; for(it=m.begin();it!=m.end();it++)…
```cpp #include using namespace std; int dp[32001],n,m,v[61],p[61],q[61]; int main() { //freopen("budget.in","r",stdin); //freopen("budget.out","w",stdout); cin…
```cpp #include using namespace std; int dp[32001],n,m,v[61],p[61],q[61]; int main() { //freopen("budget.in","r",stdin); //freopen("budget.out","w",stdout); cin…
在讨论《wa一个》回复:
求关
在讨论《wa一个》回复:
```cpp #include using namespace std; string s; int n; bool f,o; int main() { cin>>n; cin>>s; for(int i=1;i<s.size();i++) //枚举子段长度 { if(s.size()%i) continue; //不…
在讨论《站外题求助》回复:
```cpp #include using namespace std; int a[101][101],n,m,dp[101][101]; int main() { cin>>n>>m; for(int i=1;i >a[i][j]; dp[i][j]=max(dp[i-1][j]+a[i][j],dp[i][j-1…
在讨论《试了样例和几个例子没问题,还是全WA求助》回复:
我也是
在讨论《s组广东65.5能过吗?》回复:
j组71.5
在讨论《CSP j SH 92.5》回复:
广东71.5呢
高精除高精,结果第一步就没了 高精度减法程序不能用了! 我的高精度减法程序: ```cpp #include using namespace std; string x,y; int a[1000001],b[1000001],c[1000001],t[1000001],lent; int main() { long…
在讨论《是不是理解错了,就对了10分》回复:
有两道类似的题 B4005 P10719 建议你去练一下 这两道题我都AC了
在讨论《是不是理解错了,就对了10分》回复:
子区间就是一整串中间的一部分
在讨论《是不是理解错了,就对了10分》回复:
``` //这是不用前缀和的比较好的办法,但有一个测试点只能混过去 #include using namespace std; int a[100001],sum[100001],cnt=0; int n; int main() { int m=0; cin>>n; for(int i=1;i >a[i]; if(a[…