Hatena::Grouptopcoder

cafelier@SRM

cafelier のSRM参加記録です。コンテスト中に考えてたことを執拗に全部書き残すとどうなるだろうかという試み本番中にこういうコードが書きたかったなあ、という後で書いた反省コードを書き残す試み

スパムが来たのでしばらくコメント欄をはてなユーザ限定にしています、すみません、

 | 

2009-06-24

SRM443 300

| 12:22 | はてなブックマーク - SRM443 300 - cafelier@SRM

うむ

class CirclesCountry { public:
  int leastBorders(vector <int> X, vector <int> Y, vector <int> R, int x1, int y1, int x2, int y2) 
  {
    int d = 0;
    for(int i=0; i<X.size(); ++i)
      d += hypot(X[i]-x1, Y[i]-y1)<R[i] ^ hypot(X[i]-x2, Y[i]-y2)<R[i];
    return d;
  }
};

chenyukunchenyukun2009/06/28 03:36Hi:
I want to learn more about SRM 443, can you give me you email address?

cafeliercafelier2009/07/01 11:45Hi, you can send me a message from my topcoder profile page: http://www.topcoder.com/tc?module=MemberProfile&cr=22758647

トラックバック - https://topcoder-g-hatena-ne-jp.jag-icpc.org/cafelier/20090624
 | 

presented by cafelier/k.inaba under CC0