主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
xjnotywlq
2024年3月12日 15:26
玛雅人的密码 题解:求大佬解惑
P1162
回复 1
|
赞 0
|
浏览 394
#include <stdio.h> #include <stdlib.h> #include <string.h> int isrelate(char b[],int n) { if(n<=3)return 0; char c[4]; int count=0; for(int i=0; i<=n-4; i++) { c[0]=b[i]; c[1]=b[i+1]; c[2]=b[i+2]; c[3]=b[i+...
fighting789456
2022年3月6日 19:55
迭代加深
P1162
回复 0
|
赞 0
|
浏览 5.3k
#include<bits/stdc++.h> using namespace std; typedef long long LL; const int INF=1e9; char s[20]; int n; bool st[20]; int MAX; bool first_judge(){ int a[3]={0,0,0}; for(int i=0;i<n;i++) a[s[i]-'0']++; if(a[2]<2 || a[0]<1 || a[1]<1) return true;...
fighting789456
2022年3月6日 19:49
设置递归深度
P1162
回复 0
|
赞 0
|
浏览 5.0k
``` #include<bits/stdc++.h> using namespace std; typedef long long LL; const int INF=1e9; char s[20]; int n; bool st[20]; int ans; bool first_judge(){ int a[3]={0,0,0}; for(int i=0;i<n;i++) a[s[...
shmilyzsc
2021年3月5日 19:38
字符串bfs
P1162
回复 0
|
赞 0
|
浏览 9.5k
#include <bits/stdc++.h> using namespace std; bool judge(string s) { if(s.find("2012") != string::npos) return true; else return false; } int bfs(string start) { queue<string> q; unordered_map<string, int> d; q.push(start); d[start] = 0;...
题目
玛雅人的密码
题解数量
4
发布题解
热门题解
1
玛雅人的密码 题解:求大佬解惑
2
字符串bfs
3
设置递归深度
4
迭代加深