博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 1147
阅读量:4962 次
发布时间:2019-06-12

本文共 757 字,大约阅读时间需要 2 分钟。

#include 
#include
#define MAXN 3005using namespace std;int _m[MAXN];int tem[MAXN];int next[MAXN];int main(){ //freopen("acm.acm","r",stdin); int n; int i; int j; cin>>n; for(i = 0; i < n; ++ i) { cin>>_m[i]; } copy(_m,_m+n,tem); sort(tem,tem+n); j = 0; for(i = 0; i < n; ++ i) { if(_m[i] == 0) { next[j ++] = i; } } for(i = 0; i < n; ++ i) { if(_m[i] == 1) { next[j ++] = i; } } j = 0; for(i = 0; i < n; ++ i) { j = next[j]; cout<<_m[j]<<" "; } cout<

 

关注我的公众号,当然,如果你对Java, Scala, Python等技术经验,以及编程日记,感兴趣的话。 

技术网站地址: 

转载于:https://www.cnblogs.com/gavinsp/p/4563296.html

你可能感兴趣的文章
MongoDB简介
查看>>
WebLogic12c 注册windows系统服务
查看>>
Oracle转换时间出现的问题:ORA-01810: format code appears twice
查看>>
ios UICollectionView实现瀑布流
查看>>
Angular创建路由从主界面跳转到我们的cesium界面
查看>>
猴子吃桃问题
查看>>
try-catch使用反思(-)
查看>>
.NET同一个页面父容器与子容器通信方案
查看>>
苹果开发——App内购以及验证store的收据(二)
查看>>
学习计划大纲
查看>>
uml中顺序图创建
查看>>
简单修改cramfs
查看>>
sql中批量删除带有外键的所有表
查看>>
o(1)取b > a,且b的二进制中1的个数等于a二进制中1的个数,且使b最小
查看>>
【iOS Programming: The Big Nerd Ranch Guide】【笔记】2
查看>>
Codeforces Round #263 (Div. 2)
查看>>
Codeforces Round #278 (Div. 2)
查看>>
Leetcode:Maximal Rectangle
查看>>
Ubuntu搭建FTP server
查看>>
IOS学习笔记 -- 基础-疯狂猜图实现流程
查看>>