Programming Challenges: Graphical Editor
PC/UVa IDs: 110105/10267, Popularity: B, Success rate: low, Level: 1
Few notes:
- In the problem input, pixels are specified as
[column# row#]
, whereas two-dimensional vectors (or arrays) are referenced using[row# column#]
format. - The program would be doomed to infinite recursion if the condition on line
#51
is omitted.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | #include <iostream> #include <string> #include <sstream> #include <vector> #include <iterator> using namespace std; typedef vector< vector< char > > twod_vector; ostream& operator<<(ostream &out, const twod_vector &v) { twod_vector::const_iterator p; for(p = v.begin(); p < v.end(); p++) { copy((*p).begin(), (*p).end(), ostream_iterator< char >(cout, "")); cout<<endl; } return out; } void reset(twod_vector &image) { twod_vector::iterator p; for(p = image.begin(); p < image.end(); p++) { fill((*p).begin(), (*p).end(), 'O'); } } void set_pixel(twod_vector &image, int x, int y, char c) { image.at(y).at(x) = c; } void fill_rect(twod_vector &image, int x1, int y1, int x2, int y2, char c) { for(int i = y1; i <= y2; i++) { for(int j = x1; j <= x2; j++) { image.at(i).at(j) = c; } } } void fill_region(twod_vector &image, int x, int y, char old_color, char new_color) { if(old_color == new_color) { return; } image.at(y).at(x) = new_color; if(x > 0) { if(image.at(y).at(x - 1) == old_color) { fill_region(image, x - 1, y, old_color, new_color); } } if(x < static_cast<int>(image.at(y).size()) - 1) { if(image.at(y).at(x + 1) == old_color) { fill_region(image, x + 1, y, old_color, new_color); } } if(y > 0) { if(image.at(y - 1).at(x) == old_color) { fill_region(image, x, y - 1, old_color, new_color); } } if(y < static_cast<int>(image.size()) - 1) { if(image.at(y + 1).at(x) == old_color) { fill_region(image, x, y + 1, old_color, new_color); } } } void swap(int &x, int &y) { int tmp = x; x = y; y = tmp; } int main(int argc, char *argv[]) { twod_vector image; string line; getline(cin, line); while(line[0] != 'X') { istringstream iss(line); int m, n, x, y, x1, x2, y1, y2; char command, c, file_name[13]; twod_vector::iterator p; iss>>command; switch(command) { case 'I': iss>>m>>n; image.clear(); image.resize(n); for(p = image.begin(); p < image.end(); p++) { (*p).resize(m); } reset(image); break; case 'C': reset(image); break; case 'L': iss>>x>>y>>c; x--; y--; set_pixel(image, x, y, c); break; case 'V': iss>>x>>y1>>y2>>c; x--; y1--; y2--; if(y1 > y2) { swap(y1, y2); } fill_rect(image, x, y1, x, y2, c); break; case 'H': iss>>x1>>x2>>y>>c; x1--; x2--; y--; if(x1 > x2) { swap(x1, x2); } fill_rect(image, x1, y, x2, y, c); break; case 'K': iss>>x1>>y1>>x2>>y2>>c; x1--; y1--; x2--; y2--; if(x1 > x2) { swap(x1, x2); } if(y1 > y2) { swap(y1, y2); } fill_rect(image, x1, y1, x2, y2, c); break; case 'F': iss>>x>>y>>c; x--; y--; fill_region(image, x, y, image.at(y).at(x), c); break; case 'S': iss.ignore(); iss.getline(file_name, 13); cout<<file_name<<endl; cout<<image; break; } getline(cin, line); } return 0; } |