#include <iostream> #include <queue> #include <cstdio> #include <cstring> using namespace std; int n,k; int d[100010]; void bfs() { queue<int> q; memset(d,-1,sizeof(d)); d[0]=0; q.push(0); while(!q.empty()) { int t=q.front(); q.pop(); int a=(t+1)%n; if (d[a]==-1) { d[a]=d[t]+1; q.push(a); } int b=(t+k)%n; if (d[b]==-1) { d[b]=d[t]+1; q.push(b); } } return ; } int main() { scanf("%d%d",&n,&k); bfs(); int res=0; for(int i=1;i<=n;i++) res=max(res,d[i]); printf("%d",res); return 0; }
0.0分
1 人评分
C二级辅导-统计字符 (C语言代码)浏览:782 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:612 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:1158 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:503 |
人见人爱A+B (C语言代码)浏览:664 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)浏览:1090 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:468 |
a+b浏览:452 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:595 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:755 |