zoukankan      html  css  js  c++  java
  • 【小米oj】简单直接全排列

    用c++ next_permutation函数就可以了。

     1 #define mm(a) memset(a,0,sizeof(a));
     2 #define max(x,y) (x)>(y)?(x):(y)
     3 #define min(x,y) (x)<(y)?(x):(y)
     4 #define Fopen freopen("1.in","r",stdin); freopen("m.out","w",stdout);
     5 #define rep(i,a,b) for(int i=(a);i<=(b);i++)
     6 #define per(i,b,a) for(int i=(b);i>=(a);i--)
     7 #include<bits/stdc++.h>
     8 typedef long long ll;
     9 #define PII pair<ll,ll>
    10 using namespace std;
    11 const int INF=0x3f3f3f3f;
    12 const int MAXN=(int)2e5 + 5;
    13 const ll mod=1e9+7;
    14 
    15 
    16 string input,temp;
    17 vector<int>v;
    18 map<int,int>mp;
    19 int n,dp[MAXN],m;
    20 int main() {
    21     while (cin >> input) {
    22         istringstream iss(input);
    23         v.clear();
    24         v.push_back(0);
    25         mp.clear();
    26         while (getline(iss, temp, ',')) {
    27             int x=atoi(temp.c_str());
    28             v.push_back(x);
    29         }
    30         n=v.size()-1;
    31         sort(v.begin(),v.end());
    32         int flag=0;
    33         do {
    34             if(flag)printf(";");
    35             else flag=1;
    36             for(int i=1; i<=n; i++) {
    37                 if(i!=1)printf(",");
    38                 printf("%d",v[i]);
    39             }
    40         } while(next_permutation(v.begin()+1,v.end()));
    41     }
    42     return 0;
    43 }
  • 相关阅读:
    Oracle第五周测验
    软件测试第五周
    Oracle第四周作业
    c++第二章测试
    软件测试第四章
    软件测试 第三章
    Centos 安装.NET Core环境
    .net core 集成极光推送
    Swagger添加文件上传测试
    linux firewall
  • 原文地址:https://www.cnblogs.com/dogenya/p/10816102.html
Copyright © 2011-2022 走看看