码迷,mamicode.com
首页 > 其他好文 > 详细

如何去寻找结题方案

时间:2016-01-30 13:35:48      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

如何去寻找结题方案

声明

本文是 How to Find a Solution 的翻译转述篇。原文作者为Dumitru

简介

topcoder的很多问题都可以通过读题直接解答。原因在于很多题目在某种程度上都具有相似的模式。熟练的coder多数都掌握了从题目中发现相应的模式。这种模式可以是某种算法数据结构,也可以是某种抽象建模。
本文的目的就是让大家都能具有这种观察出题目内在模式的能力。

各种解题方法

简单题目

多数的SRM 250points的题目都是属于此类型。在这种类型题中,答题者主要需要把 题目的步骤描述转化为代码 。此种类型题目不考察算法,考察的为解题的速度和正确性。

BusinessTasks – SRM 236 Div 1:
N tasks are written down in the form of a circular list, so the first task is adjacent to the last one. A number n is also given. Starting with the first task, move clockwise (from element 1 in the list to element 2 in the list and so on), counting from 1 to n. When your count reaches n, remove that task from the list and start counting from the next available task. Repeat this procedure until one task remains. Return it.

test

如何去寻找结题方案

标签:

原文地址:http://www.cnblogs.com/AlexWei/p/5170644.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!