結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | koyumeishi |
提出日時 | 2015-11-27 07:12:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 790 ms / 4,000 ms |
コード長 | 1,700 bytes |
コンパイル時間 | 804 ms |
コンパイル使用メモリ | 74,484 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-21 21:47:44 |
合計ジャッジ時間 | 7,366 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 4 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 16 ms
5,248 KB |
testcase_08 | AC | 57 ms
5,248 KB |
testcase_09 | AC | 25 ms
5,248 KB |
testcase_10 | AC | 22 ms
5,248 KB |
testcase_11 | AC | 52 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 15 ms
5,248 KB |
testcase_14 | AC | 7 ms
5,248 KB |
testcase_15 | AC | 8 ms
5,248 KB |
testcase_16 | AC | 10 ms
5,248 KB |
testcase_17 | AC | 58 ms
5,248 KB |
testcase_18 | AC | 124 ms
5,248 KB |
testcase_19 | AC | 90 ms
5,248 KB |
testcase_20 | AC | 4 ms
5,248 KB |
testcase_21 | AC | 122 ms
5,248 KB |
testcase_22 | AC | 75 ms
5,248 KB |
testcase_23 | AC | 608 ms
5,248 KB |
testcase_24 | AC | 397 ms
5,248 KB |
testcase_25 | AC | 583 ms
5,248 KB |
testcase_26 | AC | 781 ms
5,248 KB |
testcase_27 | AC | 346 ms
5,248 KB |
testcase_28 | AC | 206 ms
5,248 KB |
testcase_29 | AC | 10 ms
5,248 KB |
testcase_30 | AC | 790 ms
5,248 KB |
testcase_31 | AC | 339 ms
5,248 KB |
testcase_32 | AC | 19 ms
5,248 KB |
testcase_33 | AC | 211 ms
5,248 KB |
testcase_34 | AC | 19 ms
5,248 KB |
testcase_35 | AC | 220 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main_()’: main.cpp:15:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%d%d", &h,&w); | ~~~~~^~~~~~~~~~~~~~~ main.cpp:19:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | scanf("%d", &a[i][j]); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:49:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 49 | scanf("%d", &q); | ~~~~~^~~~~~~~~~ main.cpp:52:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 52 | scanf("%d%d%d", &r,&c,&x); | ~~~~~^~~~~~~~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <ctime> #include <bitset> #include <string> #include <algorithm> using namespace std; typedef bitset<62750> bits; int h,w; int main_(){ scanf("%d%d", &h,&w); vector<vector<int>> a(h, vector<int>(w)); for(int i=0; i<h; i++){ for(int j=0; j<w; j++){ scanf("%d", &a[i][j]); } } bits s; bits filter; for(int i=0; i<h; i++){ for(int j=0; j<w; j++){ int pos = i*(w+1) + j; if(a[i][j]) s.set(pos); filter.set(pos); } } auto dbg = [&](){ string tmp = s.to_string(); reverse(tmp.begin(), tmp.end()); for(int i=0; i<h; i++){ for(int j=0; j<w; j++){ printf("%c%s", tmp[i*(w+1)+j], (j==w-1)?"\n":" "); } } puts(""); }; bool filled = false; int last = -1; int q; scanf("%d", &q); while(q--){ int r,c,x; scanf("%d%d%d", &r,&c,&x); r--; c--; last = x; if(filled) continue; if(x == s[r*(w+1)+c]) continue; bits z; z.set(r*(w+1) + c); if(x==0){ while(1){ bits last = z; z |= ((z<<1) | (z>>1) | (z<<(w+1)) | (z>>(w+1))) & s; if(z == last) break; } }else{ bits ns = (~s & filter); while(1){ bits last = z; z |= ((z<<1) | (z>>1) | (z<<(w+1)) | (z>>(w+1))) & ns; if(z == last) break; } } s ^= z; int cnt = s.count(); filled = cnt == 0 || cnt == h*w; //dbg(); } if(filled){ s.reset(); if(last == 1) s.flip(); } string tmp = s.to_string(); reverse(tmp.begin(), tmp.end()); for(int i=0; i<h; i++){ for(int j=0; j<w; j++){ printf("%c%s", tmp[i*(w+1)+j], (j==w-1)?"\n":" "); } } return 0; } int main(){ auto start = clock(); main_(); cerr << clock() - start << " [ms]" << endl; return 0; }