Codeforce 143B - Help Kingdom of Far Far Away 2
2 seconds
256 megabytes
standard input
standard output
For some time the program of rounding numbers that had been developed by the Codeforces participants during one of the previous rounds, helped the citizens of Far Far Away to convert numbers into a more easily readable format. However, as time went by, the economy of the Far Far Away developed and the scale of operations grew. So the King ordered to found the Bank of Far Far Away and very soon even the rounding didn't help to quickly determine even the order of the numbers involved in operations. Besides, rounding a number to an integer wasn't very convenient as a bank needed to operate with all numbers with accuracy of up to 0.01, and not up to an integer.
The King issued yet another order: to introduce financial format to represent numbers denoting amounts of money. The formal rules of storing a number in the financial format are as follows:
- A number contains the integer part and the fractional part. The two parts are separated with a character "." (decimal point).
- To make digits in the integer part of a number easier to read, they are split into groups of three digits, starting from the least significant ones. The groups are separated with the character "," (comma). For example, if the integer part of a number equals 12345678, then it will be stored in the financial format as 12,345,678
- In the financial format a number's fractional part should contain exactly two digits. So, if the initial number (the number that is converted into the financial format) contains less than two digits in the fractional part (or contains no digits at all), it is complemented with zeros until its length equals 2. If the fractional part contains more than two digits, the extra digits are simply discarded (they are not rounded: see sample tests).
- When a number is stored in the financial format, the minus sign is not written. Instead, if the initial number had the minus sign, the result is written in round brackets.
- Please keep in mind that the bank of Far Far Away operates using an exotic foreign currency — snakes ($), that's why right before the number in the financial format we should put the sign "$". If the number should be written in the brackets, then the snake sign should also be inside the brackets.
For example, by the above given rules number 2012 will be stored in the financial format as "$2,012.00" and number -12345678.9 will be stored as "($12,345,678.90)".
The merchants of Far Far Away visited you again and expressed much hope that you supply them with the program that can convert arbitrary numbers to the financial format. Can you help them?
The input contains a number that needs to be converted into financial format. The number's notation length does not exceed 100characters, including (possible) signs "-" (minus) and "." (decimal point). The number's notation is correct, that is:
- The number's notation only contains characters from the set {"0" – "9", "-", "."}.
- The decimal point (if it is present) is unique and is preceded and followed by a non-zero quantity on decimal digits
- A number cannot start with digit 0, except for a case when its whole integer part equals zero (in this case the integer parts is guaranteed to be a single zero: "0").
- The minus sign (if it is present) is unique and stands in the very beginning of the number's notation
- If a number is identically equal to 0 (that is, if it is written as, for example, "0" or "0.000"), than it is not preceded by the minus sign.
- The input data contains no spaces.
- The number's notation contains at least one decimal digit.
Print the number given in the input in the financial format by the rules described in the problem statement.
2012
$2,012.00
0.000
$0.00
-0.00987654321
($0.00)
-12345678.9
($12,345,678.90)
#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
int main()
{
char s[104];
int i,j,k,n,m,len,t;
while(gets(s)!=NULL)
{
len=strlen(s);
if(s[0]!='-')
{
printf("$");
if(strchr(s,'.')==NULL)
{
k=len%3;
if(k==0)
{
for(i=0;i<=2;i++)
printf("%c",s[i]);
for(i=3,j=0;i<len;i++)
{
if(j%3==0)
printf(",");
printf("%c",s[i]);
j++;
}
}
else
{
for(i=0;i<=k-1;i++)
printf("%c",s[i]);
for(i=k,j=0;i<len;i++)
{
if(j%3==0)
printf(",");
printf("%c",s[i]);
j++;
}
}
printf(".00");
}
else
{
for(i=0;i<len;i++)
if(s[i]=='.')
{
m=i;
break;
}
k=m%3;
if(k==0)
{
for(i=0;i<=2;i++)
printf("%c",s[i]);
for(i=3,j=0;i<m;i++)
{
if(j%3==0)
printf(",");
printf("%c",s[i]);
j++;
}
printf(".");
n=len-m-1;
if(n>=2)
printf("%c%c",s[m+1],s[m+2]);
else if(n==1)
printf("%c0",s[m+1]);
}
else
{
for(i=0;i<=k-1;i++)
printf("%c",s[i]);
for(i=k,j=0;i<m;i++)
{
if(j%3==0)
printf(",");
printf("%c",s[i]);
j++;
}
printf(".");
n=len-m-1;
if(n>=2)
printf("%c%c",s[m+1],s[m+2]);
else if(n==1)
printf("%c0",s[m+1]);
}
}
}
else
{
printf("($");
if(strchr(s,'.')==NULL)
{
k=(len-1)%3;
if(k==0)
{
for(i=1;i<=3;i++)
printf("%c",s[i]);
for(i=4,j=0;i<len;i++)
{
if(j%3==0)
printf(",");
printf("%c",s[i]);
j++;
}
}
else
{
for(i=1;i<=k;i++)
printf("%c",s[i]);
for(i=k+1,j=0;i<len;i++)
{
if(j%3==0)
printf(",");
printf("%c",s[i]);
j++;
}
}
printf(".00");
}
else
{
for(i=0;i<len;i++)
if(s[i]=='.')
{
m=i;
break;
}
k=(m-1)%3;
if(k==0)
{
for(i=1;i<=3;i++)
printf("%c",s[i]);
for(i=4,j=0;i<m;i++)
{
if(j%3==0)
printf(",");
printf("%c",s[i]);
j++;
}
printf(".");
n=len-m-1;
if(n>=2)
printf("%c%c",s[m+1],s[m+2]);
else if(n==1)
printf("%c0",s[m+1]);
}
else
{
for(i=1;i<=k;i++)
printf("%c",s[i]);
for(i=k+1,j=0;i<m;i++)
{
if(j%3==0)
printf(",");
printf("%c",s[i]);
j++;
}
printf(".");
n=len-m-1;
if(n>=2)
printf("%c%c",s[m+1],s[m+2]);
else if(n==1)
printf("%c0",s[m+1]);
}
}
printf(")");
}
printf("\n");
}
return 0;
}
Codeforce 143B - Help Kingdom of Far Far Away 2的更多相关文章
- Constructing Roads In JGShining's Kingdom(HDU1025)(LCS序列的变行)
Constructing Roads In JGShining's Kingdom HDU1025 题目主要理解要用LCS进行求解! 并且一般的求法会超时!!要用二分!!! 最后蛋疼的是输出格式的注 ...
- 拓扑排序 --- hdu 4948 : Kingdom
Kingdom Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Sub ...
- codeforces 613D:Kingdom and its Cities
Description Meanwhile, the kingdom of K is getting ready for the marriage of the King's daughter. Ho ...
- Codeforce - Street Lamps
Bahosain is walking in a street of N blocks. Each block is either empty or has one lamp. If there is ...
- HDU 4777 Rabbit Kingdom (2013杭州赛区1008题,预处理,树状数组)
Rabbit Kingdom Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)To ...
- [ACM] hdu 1025 Constructing Roads In JGShining's Kingdom (最长递增子序列,lower_bound使用)
Constructing Roads In JGShining's Kingdom Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65 ...
- Codeforces Round #360 (Div. 1) D. Dividing Kingdom II 并查集求奇偶元环
D. Dividing Kingdom II Long time ago, there was a great kingdom and it was being ruled by The Grea ...
- HDU 1025 Constructing Roads In JGShining's Kingdom(二维LIS)
Constructing Roads In JGShining's Kingdom Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65 ...
- Codeforce Round #216 Div2
e,还是写一下这次的codeforce吧...庆祝这个月的开始,看自己有能,b到什么样! cf的第二题,脑抽的交了错两次后过了pretest然后system的挂了..脑子里还有自己要挂的感觉,果然回头 ...
随机推荐
- Java基础06 组合
作者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明.谢谢! 我们已经尝试去定义类.定义类,就是新建了一种类型(type).有了类,我们接着构造 ...
- 用c#开发微信(10) JSSDK 基本用法 分享接口“发送到朋友”
微信JS-SDK是微信公众平台面向网页开发者提供的基于微信内的网页开发工具包.通过使用微信JS-SDK,网页开发者可借助微信高效地使用拍照.选图.语音.位置等手机系统的能力,同时可以直接使用微信分享. ...
- 瑞蓝RL-NDVM-A16网络视频解码器 视频上墙解决方案专家--数字视频解码矩阵
瑞蓝网络数字视频解码矩阵(简称RL-NDVM)是依据第三代开放式网络视频监控系统的实际需求,专为视频上墙显示而研制的一款新型数字解码上墙设备.RL-NDVM解码矩阵是集解码器和HDMI/DVI/VGA ...
- Windows Azure入门教学系列 (一): 创建第一个WebRole程序
原文 Windows Azure入门教学系列 (一): 创建第一个WebRole程序 在第一篇教学中,我们将学习如何在Visual Studio 2008 SP1中创建一个WebRole程序(C#语言 ...
- 【Demo 0007】Android 信使(Intent)
本章学习要点: 1. 了解Intent功能作用: 2. 掌握Intent在显示和隐示基本使用方法及规则:
- Phalcon资源文件管理(Assets Management)
资源文件管理(Assets Management)¶ Phalcon\Assets是一个让开发人员管理静态资源的组件,如管理css,javascript等. Phalcon\Assets\Manage ...
- leetcode先刷_Path Sum
水的问题不解释,具有参数保持部和,当它到达一个叶子节点,推断是否与给予平等. 需要注意的是节点在树中的数目值它可以是正的或负.它不使用,修剪.有仅仅存在罐.因此,关于或代表最终结果的字. bool h ...
- Android触控屏幕Gesture(GestureDetector和SimpleOnGestureListener的使用教程)
1.当用户触摸屏幕的时候,会产生许多手势,例如down,up,scroll,filing等等,我们知道View类有个View.OnTouchListener内部接口,通过重写他的onTouch(Vie ...
- php 控制页面跳转
<?php class UserAction extends Action{ public function index(){ echo "你好!"; $m=M('user' ...
- 基于visual Studio2013解决面试题之0401非递归遍历二叉树
题目