CF316F2.Suns and Rays

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Smart Beaver became interested in drawing. He draws suns. However, at some point, Smart Beaver realized that simply drawing suns is boring. So he decided to design a program that will process his drawings. You are given a picture drawn by the beaver. It will have two colors: one for the background and one for the suns in the image. Your task will be to count the number of suns in the image and for each of them to count the number of rays.

Sun is arbitrarily rotated ellipse with rays. Ray is a segment which connects point on boundary of the ellipse with some point outside ellipse.

An image where all suns are circles. An image where all suns are ellipses, their axes are parallel to the coordinate axes. An image where all suns are rotated ellipses. It is guaranteed that:

  • No two suns have common points.
  • The rays’ width is 33 pixels.
  • The lengths of the ellipsis suns’ axes will lie between 4040 and 200200 pixels.
  • No two rays intersect.
  • The lengths of all rays will lie between 1010 and 3030 pixels.

输入格式

The first line contains two integers hh and ww — the height and width of the image ( 1<=h,w<=16001<=h,w<=1600 ). Next hh lines will contain ww space-separated integers each. They describe Smart Beaver’s picture. Each number equals either a 00 (the image background), or a 11 (the sun color).

The input limits for scoring 30 points are (subproblem F1):

  • All suns on the image are circles.

The input limits for scoring 70 points are (subproblems F1+F2):

  • All suns on the image are ellipses with axes parallel to the coordinate axes.

The input limits for scoring 100 points are (subproblems F1+F2+F3):

  • All suns on the image are ellipses, they can be arbitrarily rotated.

输出格式

The first line must contain a single number kk — the number of suns on the beaver’s image. The second line must contain exactly kk space-separated integers, corresponding to the number of rays on each sun. The numbers of the second line must be sorted in the increasing order.

说明/提示

For each complexity level you are suggested a sample in the initial data. You can download the samples at http://www.abbyy.ru/sun.zip.

首页