主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
huanghu
2024年3月24日 15:22
求30的倍数 题解:C++全排列函数
P1736
回复 0
|
赞 0
|
浏览 595
#include <iostream> #include <vector> #include<string> #include<algorithm> using namespace std; int main(){ string str; cin>>str; int n = str.length(); vector<char> v(n); for(int i = 0; i<n; i++){ v[i] = str[i]; } vector<int&g...
Bzreach
2023年3月19日 17:05
直接调用全排列函数,这类题直接秒杀
P1736
回复 0
|
赞 2
|
浏览 3.0k
#include <bits/stdc++.h> using namespace std; int main(){ string s; int a[105]; cin>>s; int len=s.size(); sort(s.begin(),s.end()); int maxx=0,flag=0; do{ int sum=0; for(int i=0;i<len;i++){ sum=sum*10+s[i]-'0'; ...
happyday
2022年4月7日 15:28
全排列
P1736
回复 0
|
赞 0
|
浏览 5.0k
#include <bits/stdc++.h> using namespace std; bool check(string s){ int num = atoi(s.c_str()); if(num%30==0) return true; return false; } int main(){ string s; cin>>s; int maxx=0; do{ if(check(s)){ maxx = max(maxx,atoi...
Ashley1101
2022年2月23日 16:43
【回溯法】求30的倍数
P1736
回复 0
|
赞 0
|
浏览 4.6k
#include<algorithm> #include<vector> #include<string> #include<iostream> using namespace std; //回溯法 string function(string num, string &tmp, int &flag) { //填完所有数字 if (num.empty()) { &n...
James
2021年3月20日 18:22
各个位置和为3的倍数同时至少有一个零则满足条件
P1736
回复 0
|
赞 0
|
浏览 9.0k
#include <iostream> #include <algorithm> #include <stack> #include <string.h> #include <stdio.h> #include <queue> using namespace std; const int maxn=10005; bool cmp(int x,int y){ return x>y; } string s; int a[maxn]; int main(){ ...
题目
求30的倍数
题解数量
5
发布题解
热门题解
1
直接调用全排列函数,这类题直接秒杀
2
求30的倍数 题解:C++全排列函数
3
各个位置和为3的倍数同时至少有一个零则满足条件
4
全排列
5
【回溯法】求30的倍数