結果
問題 | No.165 四角で囲え! |
ユーザー | tottoripaper |
提出日時 | 2015-03-13 00:12:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,345 ms / 5,000 ms |
コード長 | 2,087 bytes |
コンパイル時間 | 510 ms |
コンパイル使用メモリ | 46,464 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-07 18:56:57 |
合計ジャッジ時間 | 19,217 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 661 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 837 ms
6,944 KB |
testcase_06 | AC | 150 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 889 ms
6,940 KB |
testcase_12 | AC | 1,330 ms
6,944 KB |
testcase_13 | AC | 1,343 ms
6,940 KB |
testcase_14 | AC | 1,341 ms
6,944 KB |
testcase_15 | AC | 1,334 ms
6,940 KB |
testcase_16 | AC | 1,345 ms
6,940 KB |
testcase_17 | AC | 1,323 ms
6,940 KB |
testcase_18 | AC | 1,290 ms
6,940 KB |
testcase_19 | AC | 1,330 ms
6,944 KB |
testcase_20 | AC | 1,326 ms
6,940 KB |
testcase_21 | AC | 1,323 ms
6,944 KB |
testcase_22 | AC | 1,325 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:31:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 31 | scanf("%d %d", &N, &B); | ~~~~~^~~~~~~~~~~~~~~~~ main.cpp:34:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 34 | scanf("%d %d %d", X+i, Y+i, P+i); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
// 辛い #include <cstdio> #include <vector> #include <algorithm> int N, B; int X[400], Y[400], P[400]; int map[400][400], map2[400][400]; void compress(int (&x)[400]){ std::vector<int> v; for(int i=0;i<N;i++){ v.push_back(x[i]); } std::sort(v.begin(), v.end()); v.erase(std::unique(v.begin(), v.end()), v.end()); for(int i=0;i<N;i++){ int index = std::lower_bound(v.begin(), v.end(), x[i]) - v.begin(); x[i] = index; } } int sum(int x1, int x2, int y1, int y2, int (&map)[400][400]){ return map[x2][y2] - (x1>0?map[x1-1][y2]:0) - (y1>0?map[x2][y1-1]:0) + (x1>0&&y1>0?map[x1-1][y1-1]:0); } int main(){ scanf("%d %d", &N, &B); for(int i=0;i<N;i++){ scanf("%d %d %d", X+i, Y+i, P+i); } compress(X); compress(Y); for(int i=0;i<N;i++){ map[X[i]][Y[i]] = P[i]; map2[X[i]][Y[i]] = 1; } for(int i=0;i<N;i++){ for(int j=1;j<N;j++){ map[j][i] += map[j-1][i]; map2[j][i] += map2[j-1][i]; } } for(int i=0;i<N;i++){ for(int j=1;j<N;j++){ map[i][j] += map[i][j-1]; map2[i][j] += map2[i][j-1]; } } // for(int i=0;i<N;i++){ // for(int j=0;j<N;j++){ // printf("%d ", map[j][i]); // } // puts(""); // } int res = 0; for(int i=0;i<N;i++){ for(int j=i;j<N;j++){ for(int k=0;k<N;k++){ int lb = k, ub = N; while(ub - lb > 1){ int mid = (lb+ub) / 2; if(sum(i, j, k, mid, map) <= B){ lb = mid; }else{ ub = mid; } } // printf("%d, %d, %d: %d\n", i, j, k, lb); if(sum(i, j, k, lb, map) > B){ continue; } res = std::max(res, sum(i, j, k, lb, map2)); } } } printf("%d\n", res); }