杰拉斯的博客

[整理]ACM模拟题详解(3)——数论(续)

杰拉斯 杰拉斯 | 时间:2012-02-17, Fri | 5,304 views
编程算法 

5、Prime Ring Problem

Problem Description

A ring is compose of n circles as shown in diagram. Put natural number 1, 2, ..., n into each circle separately, and the sum of numbers in two adjacent circles should be a prime.

Note: the number of first circle should always be 1.

Input

n (0 < n < 20).

Output

The output format is shown as sample below. Each row represents a series of circle numbers in the ring beginning from 1 clockwisely and anticlockwisely. The order of numbers must satisfy the above requirements. Print solutions in lexicographical order.

You are to write a program that completes above process.

Print a blank line after each case.

(阅读全文…)

[整理]ACM模拟题详解(2)——简单数论

杰拉斯 杰拉斯 | 时间:2012-02-17, Fri | 9,057 views
编程算法 

有很多与数字相关的题目,主要考察基本的编程能力,如果数学比较好,对于解决这些问题有比较好的帮助。下面的题目是学生收集的题目,我进行了讲解。

1、Self Numbers

Description

In 1949 the Indian mathematician D.R. Kaprekar discovered a class of numbers called self-numbers. For any positive integer n, define d(n) to be n plus the sum of the digits of n. (The d stands for digitadition, a term coined by Kaprekar.) For example, d(75) = 75 + 7 + 5 = 87. Given any positive integer n as a starting point, you can construct the infinite increasing sequence of integers n, d(n), d(d(n)), d(d(d(n))), .... For example, if you start with 33, the next number is 33 + 3 + 3 = 39, the next is 39 + 3 + 9 = 51, the next is 51 + 5 + 1 = 57, and so you generate the sequence 33, 39, 51, 57, 69, 84, 96, 111, 114, 120, 123, 129, 141, ... The number n is called a generator of d(n). In the sequence above, 33 is a generator of 39, 39 is a generator of 51, 51 is a generator of 57, and so on. Some numbers have more than one generator: for example, 101 has two generators, 91 and 100. A number with no generators is a self-number. There are thirteen self-numbers less than 100: 1, 3, 5, 7, 9, 20, 31, 42, 53, 64, 75, 86, and 97.

Input

No input for this problem.

Output

Write a program to output all positive self-numbers less than 10000 in increasing order, one per line.

(阅读全文…)

[整理]ACM模拟题讲解(1)-高精度

杰拉斯 杰拉斯 | 时间:2012-02-17, Fri | 6,304 views
编程算法 

Java中提供了byte、short、int和long表示整数,float和double来表示浮点数,每种类型都有一定的表示范围,当超过了这个范围之后就不能处理了。为了提供对非常大的整数和浮点数的处理,Java提供了BigDecimal和BigInteger。下面的代码演示了BigDecimal和BigInteger的基本用法:

  1. BigDecimal data1 = new BigDecimal("23232123456789.123456789");
  2. BigDecimal data2 = new BigDecimal("23423423123456789.123456789");
  3. BigDecimal data3 = data1.add(data2);
  4. System.out.println(data3.toString());
  5. BigInteger iData1 = new BigInteger("123123123456456789789123456789");
  6. BigInteger iData2 = new BigInteger("12312312323232456456789789123456789");
  7. BigInteger iData3 = iData1.add(iData2);
  8. System.out.println(iData3.toString());

如果不使用这些类库如何实现大整数和大浮点数的计算呢?下面通过ACM模拟题介绍。

(阅读全文…)

TextView不用获取焦点也能实现跑马灯

杰拉斯 杰拉斯 | 时间:2012-02-13, Mon | 7,514 views
编程算法 

之前在网上找了很多关于TextView的跑马灯效果实现的例子,实现起来都存在一些问题,例如一种是完全重画一个跑马灯,还有就是只设置TextView的相关属性使其具有跑马灯的效果,总的来说这两种方法都是可行的,但是都有其不足之处,第一种太复杂,实现起来比较麻烦,第二种呢,它只能在TextView获得焦点的时候才有跑马灯的效果,这样有时候并不能达到我们所要求的效果。我通过网上的一些例子自己在做了一些改动,就实现了现在不用获取焦点也能“跑”起来的效果。

(阅读全文…)

Android Intent调用大全

杰拉斯 杰拉斯 | 时间:2012-02-10, Fri | 6,688 views
编程算法 

搜集于网络,整理如下:

  1. //调用浏览器
  2. Uri uri = Uri.parse("");
  3. Intent it = new Intent(Intent.ACTION_VIEW,uri);
  4. startActivity(it);
  5.  
  6. //显示某个坐标在地图上
  7.  
  8. Uri uri = Uri.parse("geo:38.899533,-77.036476");
  9. Intent it = new Intent(Intent.Action_VIEW,uri);
  10. startActivity(it);
  11.  
  12. //显示路径
  13. Uri uri = Uri.parse("http://maps.google.com/maps?f=d&saddr=startLat%20startLng&daddr=endLat%20endLng&hl=en");
  14. Intent it = new Intent(Intent.ACTION_VIEW,URI);
  15. startActivity(it);
  16.  
  17. //拨打电话
  18. Uri uri = Uri.parse("tel:10086");
  19. Intent it = new Intent(Intent.ACTION_DIAL, uri);
  20. startActivity(it);
  21.  
  22. Uri uri = Uri.parse("tel.10086");
  23. Intent it =new Intent(Intent.ACTION_CALL,uri);
  24. //需要添加 <uses-permission id="android.permission.CALL_PHONE" /> 这个权限到androidmanifest.xml
  25.  
  26. //发送短信或彩信
  27. Intent it = new Intent(Intent.ACTION_VIEW);
  28. it.putExtra("sms_body", "The SMS text");
  29. it.setType("vnd.android-dir/mms-sms");
  30. startActivity(it);
  31.  
  32. //发送短信
  33. Uri uri = Uri.parse("smsto:10086");
  34. Intent it = new Intent(Intent.ACTION_SENDTO, uri);
  35. it.putExtra("sms_body", "cwj");
  36. startActivity(it);
  37.  
  38. //发送彩信
  39. Uri uri = Uri.parse("content://media/external/images/media/23");
  40. Intent it = new Intent(Intent.ACTION_SEND);
  41. it.putExtra("sms_body", "some text");
  42. it.putExtra(Intent.EXTRA_STREAM, uri);
  43. it.setType("image/png");
  44. startActivity(it);
  45.  
  46. //发送邮件
  47. Uri uri = Uri.parse("mailto:android123@163.com");
  48. Intent it = new Intent(Intent.ACTION_SENDTO, uri);
  49. startActivity(it);
  50.  
  51. Intent it = new Intent(Intent.ACTION_SEND);
  52. it.putExtra(Intent.EXTRA_EMAIL, android123@163.com);
  53. it.putExtra(Intent.EXTRA_TEXT, "The email body text");
  54. it.setType("text/plain");
  55. startActivity(Intent.createChooser(it, "Choose Email Client"));
  56.  
  57. Intent it=new Intent(Intent.ACTION_SEND);
  58. String[] tos={"me@abc.com"};
  59. String[] ccs={"you@abc.com"};
  60. it.putExtra(Intent.EXTRA_EMAIL, tos);
  61. it.putExtra(Intent.EXTRA_CC, ccs);
  62. it.putExtra(Intent.EXTRA_TEXT, "The email body text");
  63. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
  64. it.setType("message/rfc822");
  65. startActivity(Intent.createChooser(it, "Choose Email Client"));
  66.  
  67. //播放媒体文件
  68. Intent it = new Intent(Intent.ACTION_VIEW);
  69. Uri uri = Uri.parse("file:///sdcard/cwj.mp3");
  70. it.setDataAndType(uri, "audio/mp3");
  71. startActivity(it);
  72.  
  73. Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1");
  74. Intent it = new Intent(Intent.ACTION_VIEW, uri);
  75. startActivity(it);
  76.  
  77. //卸载APK
  78. Uri uri = Uri.fromParts("package", strPackageName, null);
  79. Intent it = new Intent(Intent.ACTION_DELETE, uri);
  80. startActivity(it);
  81.  
  82. //卸载apk 2
  83. Uri uninstallUri = Uri.fromParts("package", "xxx", null);
  84. returnIt = new Intent(Intent.ACTION_DELETE, uninstallUri);
  85.  
  86. //安装APK
  87. Uri installUri = Uri.fromParts("package", "xxx", null);
  88. returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);
  89.  
  90. //播放音乐
  91. Uri playUri = Uri.parse("file:///sdcard/download/sth.mp3");
  92. returnIt = new Intent(Intent.ACTION_VIEW, playUri);
  93.  
  94. //发送附近
  95. Intent it = new Intent(Intent.ACTION_SEND);
  96. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
  97. it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/cwj.mp3");
  98. sendIntent.setType("audio/mp3");
  99. startActivity(Intent.createChooser(it, "Choose Email Client"));
  100.  
  101. //market上某个应用信,pkg_name就是应用的packageName
  102. Uri uri = Uri.parse("market://search?q=pname:pkg_name");
  103. Intent it = new Intent(Intent.ACTION_VIEW, uri);
  104. startActivity(it);
  105.  
  106. //market上某个应用信息,app_id可以通过www网站看下
  107. Uri uri = Uri.parse("market://details?id=app_id");
  108. Intent it = new Intent(Intent.ACTION_VIEW, uri);
  109. startActivity(it);
  110.  
  111. //调用搜索
  112. Intent intent = new Intent();
  113. intent.setAction(Intent.ACTION_WEB_SEARCH);
  114. intent.putExtra(SearchManager.QUERY,"android123")
  115. startActivity(intent);
  116.  
  117. //调用分享菜单
  118. Intent intent=new Intent(Intent.ACTION_SEND);   
  119. intent.setType("text/plain");  //分享的数据类型 
  120. intent.putExtra(Intent.EXTRA_SUBJECT, "subject");  //主题 
  121. intent.putExtra(Intent.EXTRA_TEXT,  "content");  //内容 
  122. startActivity(Intent.createChooser(intent, "title"));  //目标应用选择对话框的标题