#+title: 一些有意思的比赛

* 编程类

- [[https://developers.googleblog.com/2023/02/celebrate-googles-coding-competitions.html][Celebrate Google’s Coding Competitions with a final round of programming fun]]
  2023 年的最后一届 Google Code Jam.
- [[https://adventofcode.com/][Advent of Code]]

** ICFP

仿佛是类似 ICPC 的比赛, 不过是加长的 72h 版.

- [[https://icfpcontest2022.github.io/][ICFP Contest 2022]]
  题目是矩形填色: 把一个正方形分成小矩形, 对每个矩形填色, 使其尽量接近给定图片.
  填色的 cost 与矩形大小成反比, 所以改变单个像素的代价远高于改变整个矩形的.

  PS. 看起来不少队伍都用 Rust, 有空说不定学一学.