这题确实是好。其实是求x1*a1+x2*a2+....M*xn+1=1有解的条件。很明显,就是(a1,a2,...M)=1了。然后,可以想象,直接求有多少种,很难,所以,求出选择哪些数一起会不与M互质。。。好吧,思路就到这里了。。。T_T经过人提示,若(a1,a2,,,,an)与M不互质,则最大公约...
转载 2014-09-04 15:57:00
44阅读
2评论
这道题使用dfs会超时,看评论区也有人遇到同样的问题,比赛时调试了1个多小时尝试改进,没有意识到应该换用非递归的bfs可以解决,消耗了大量的时间。 超时的方案如下,使用python实现:(经过尝试,能通过的测试用例中,使用5个方向就可以了) 1 import sys 2 class Solution: 3 def __init__(self): 4 self.vi
题目链接分析: 最近做的区间dp挺多 最简单的:n^3枚举,显然TLE 其实有一个很显然的dp状态: f[i][j]表示结尾是i,j的等差数列的数量: f[i][j]=Σ(f[k][j]+1) (a[i]-a[j]=a[j]-a[k]) 但是这样的复杂度也是n^3这是...
转载 2017-09-10 16:41:00
180阅读
2评论
原题链接 考察:容斥原理 迷惑数据,108x15,我寻思这不要高精度?结果网上全是long long就过了... 思路: 观察发现如果能完成任务,那么n+1数字里至少有一对gcd是1,这样不好考虑,但碰到"至少一对"这种词语可以考虑补集思想,即没有一对公约数为1.这样就转化成求M的质因数...然后计
转载 2021-01-31 13:05:00
125阅读
2评论
1091. Acute Stroke (30) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue One important factor to identify acute stroke
原创 2022-08-30 10:11:39
42阅读
跳蚤Time Limit: 1000msMemory Limit: 10000KBThis problem will be judged onPKU. Original ID:109164-bit integer IO format:%lld Java class name:MainZ城市居住着很多...
转载 2015-10-01 10:02:00
44阅读
题目链接分析: 最近做的区间dp挺多 最简单的:n^3枚举,显然TLE 其实有一个很显然的dp状态: f[i][j]表示结尾是i,j的等差数列的数量: f[i][j]=Σ(f[k][j]+1) (a[i]-a[j]=a[j]-a[k]) 但是这样的复杂度也是n^3这是...
转载 2017-09-10 16:41:00
174阅读
2评论
题目题意:给定一个三维数组,0表示正常1表示有肿瘤,肿瘤块的大小大于等于t才算作是肿瘤,让计
原创 2023-06-27 10:11:10
58阅读
Tmutarakan ExamsTime Limit: 1000msMemory Limit: 16384KBThis problem will be judged onUral. Original ID:109164-bit integer IO format:%lld Java class na...
转载 2015-09-29 21:02:00
89阅读
2评论
1091 线段的重叠X轴上有N条线段,每条线段包括1个起点和终点。线段的重叠是这样
原创 2023-02-17 16:57:31
81阅读
A+B for Input-Output Practice (III):#include<iostream> using namespace std; int main(){ int a,b; while(cin>>a>>b){ if(a==0&&b==0) break;
原创 2013-07-27 17:51:53
973阅读
JDOJ 1091: 乘法游戏 JDOJ传送门 Description 乘法游戏是在一圈牌上进行的。每一张牌包含一个正整数。每次玩家拿出一张牌,得分是用它的数字乘以它左边和右边的数,最后一次拿完牌后只剩下两张牌。要求最大得分和最小得分的差。 Input 第一行n(3<=n<=100),第二行以逆时针
转载 2020-10-13 18:14:00
36阅读
2评论
://.51nod.com/onlineJudge/questionCode.html#!prob
转载 2017-08-31 11:47:00
40阅读
2评论
C:\Program Files\R\rw1091\library\grid\doc\rotated.pdf
ii
转载 2023-05-16 18:50:16
15阅读
1091 N-自守数 (15 分) 如果某个数 K 的平方乘以 N 以后,结果的末尾几位数等于 K,那么就称这个数为“N-自守数”。例如 3,而 2 的末尾两位正好是 9,所以 9 是一个 3-自守数。 本题就请你编写程序判断一个给定的数字是否关于某个 N 是 N-自守数。 输入格式: 输入在第一行
转载 2019-02-27 12:18:00
55阅读
20点赞
2评论
1091 Acute Stroke (30 point(s))One important factor to identify acute stroke (急性
原创 2022-09-15 11:05:22
46阅读
程序从文本读入已经让程序WA了好多次,以后一定一定先把debug注释掉!!!
原创 2021-07-30 15:57:50
123阅读
#include<iostream>#include<stdio.h>usingnamespacestd;intnum[50010],l[50010],r[50010];#defineMin-9999999intmain(){intT,n,sum,tmp;cin>>T;while(T--){scanf("%d",&n);for(inti=1;i<=n;++i)scanf("%d",&num[i]);sum=0;tmp=Min;//l[i]表示[1,i]中最大的子段和for(inti=1;i<
转载 2011-07-13 22:37:00
56阅读
题目#include<iostream>using namespace std;int main() { int m; cin>>m; for(int i=0; i<m; ++i) { int t; cin>>t; int temp=t; int count=1; while(temp) { count*=10;...
原创 2023-06-27 10:18:55
36阅读
1 问题One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysis in which the co
原创 2022-05-26 11:57:47
78阅读
  • 1
  • 2
  • 3
  • 4
  • 5