Блог пользователя tmwilliamlin168

Автор tmwilliamlin168, история, 3 года назад, По-английски

Having had a ton of experience with CP, I have decided that I could share my knowledge the best with the world by making a course! This course currently has lessons designed for people of many levels, from newbies to low masters.

Currently, I have opened pre-registration. I'm currently just trying to get an idea of how many people would be interested in such a course (and also to catch possible bugs on the website).

Here is the course website: http://course.williamlin.io/

100 lucky winners who pre-register will be given beta access to the course for free! Pre-registration won't be open for long though, so be sure to do it quick!

Update:

Thanks to every who pre-registered! The pre-registration assessment proved to be tough, and we decided to offer spots for beta access even for those who did not pass the test! Look out for an email from [email protected] for your decision letter, as well as solutions and more opportunities to gain beta access to the course!

Update 2:

Congrats to the people who were selected to be part of the beta course:

Spoiler

Here are the solutions:

1
2
3
4
5
6
7
8

Полный текст и комментарии »

  • Проголосовать: нравится
  • +254
  • Проголосовать: не нравится

Автор tmwilliamlin168, история, 4 года назад, По-английски

I actually don't know too much about the difficulty of the problems, so the stream will end either when I solve the first 150 problems (all problems excluding the "Additional Problems") or when I have solved problems for 12 hours.

I will try to use no prewritten templates, but maybe some Wikipedia?

The stream is planned to start at 6/14 UTC 12:00am.

Link: https://youtu.be/dZ_6MS14Mg4

Hopefully everything will go well.

Полный текст и комментарии »

  • Проголосовать: нравится
  • +276
  • Проголосовать: не нравится

Автор tmwilliamlin168, история, 4 года назад, По-английски

For fans of Avatar: The Last Airbender https://youtu.be/xiDEsX0_MGE

Spoiler

Полный текст и комментарии »

  • Проголосовать: нравится
  • +174
  • Проголосовать: не нравится

Автор tmwilliamlin168, история, 6 лет назад, По-английски

Hello,

I have dual citizenship (Taiwan and USA), and I currently study in an American high school located in Taiwan. I've already participated in the regional contest about 7 weeks ago and did pretty well, so I qualified for the national contest.

So now I'm practicing as much as I can for the national contest, but recently I was told that I could qualify for the training camp but not the national team for Taiwan.

I searched online for IOI rules and found this link on the IOI-2017 site: http://www.ioinformatics.org/rules/reg17.pdf. Here are some parts of it that stood out:

"A Contestant is a student who was enrolled in a school at a level not higher than secondary education, in the Country they are representing, for the majority of the period 1 September to 31 December in the year before IOI’n. Students who are studying abroad may represent the Country of their nationality."

Not only am I studying in Taiwan, I also have Taiwan citizenship, so I definitely fit this criterion.

"The main objectives to be accomplished by the IOI are:

  • To discover, encourage, bring together, challenge, and give recognition to young people who are exceptionally talented in the field of informatics;

  • To foster friendly international relationships among computer scientists and informatics educators;

  • To bring the discipline of informatics to the attention of young people;

  • To promote the organisation of informatics competitions for students at schools for secondary education;

  • To encourage countries to organise a future IOI in their country."

Later, I asked for clarification about why I was ineligible, which doesn't support the objectives shown above:

"The national teams are supposed to show that Taiwanese education is superior to other education systems. If a student from a foreign school represents Taiwan in an international olympiad, then it defeats the purpose. Thus, you are ineligible to represent Taiwan in international olympiads."

  1. Other countries, like USA, don't care about things like the statement above.
  2. The statement above only applies if the contestants perform well. Else, they should invite someone "with a different education system" (I don't know why it matters) to take the blame for not performing well.
  3. Which person at IOI would notice which school I came from?
  4. Which person at IOI who even noticed which school I came from would bother to know that my school provides American education?
  5. Which person at IOI who even noticed which school I came from and that my school provides American education would change their views about Taiwan?
  6. Why can't they credit my results (IF they are even good) to the training that I received in the training camp in Taiwan?
  7. Of course "Taiwanese education" and "American education" prepares all students for international olympiads (for example for informatics, by teaching topics like Dynamic Programming Optimizations or Heavy-Light Decomposition in school), and it's not the contestants' own hard work. Thus, the results for each country accurately reflects how successful the education system in that country is.

I don't really have that much experience or knowledge in everything mentioned above. Maybe IOI set a "loose bound" for the eligible contestants, and each country can set its own "tighter bound", so I came here to ask, what are your thoughts?

Hopefully, this can be a precedent that will be explained for all countries and contestants in the future.

Полный текст и комментарии »

  • Проголосовать: нравится
  • +242
  • Проголосовать: не нравится

Автор tmwilliamlin168, история, 6 лет назад, По-английски

I've been thinking for one month and I still don't know how to solve this problem:

There is a park of size (A<=100)x(B<=100) (consider it as a grid), with (1, 1) as the top-left corner. There are C<=1000 trees on the park, all of which have distinct locations. You want to place as many VIP lounges on the park as possible, such that every VIP lounge is adjacent to a tree on its top, bottom, left, or right. But because of privacy issues, a VIP lounge cannot be adjacent to another VIP lounge (including diagonally). Note that you cannot place a VIP lounge on a tree.

For example, consider the following park of size 9x7:

The "T"s represent the trees, the grey shaded areas represent possible locations for VIP lounges. If there were to be a VIP lounge on where the "V" is located, then the "x"s represent the locations where there cannot be VIP lounges.

Time limit: 1s

Samples

My thoughts:

Finding the maximum independent set of a bipartite graph can be done in polynomial time. Create a graph in which the possible VIP lounge placements are nodes and there are edges between 2 nodes if the 2 VIP lounges are adjacent. The maximum independent set of this graph is the answer. Notice that this graph is quadripartite (all combinations of x, y mod 2). Maybe there is also a way to find the maximum independent set of a quadripartite graph efficiently.

Or maybe I'm thinking too much and there is a greedy solution.

Полный текст и комментарии »

  • Проголосовать: нравится
  • +45
  • Проголосовать: не нравится