花了一晚上的时间才弄出来的程序居然 OutOfMemery 了,悲催。
应该是想法错了,此题不应该全局遍历的,耗时且对大数据量来说又不实际。
在问题的讨论区有人提到了一种思路,当添加一个数时会影响八个数。那么使用添加做驱动不断的修正数值是否会好些呢,又或者有其他的规律我没看到。今天就先到这,明天继续,灭了这题。
下面是今晚的成果,可惜是 WA 的:
import java.util.Scanner;
import java.util.List;
import java.util.LinkedList;
import java.util.Iterator;
public class Main {
public void run() throws Exception {
List<Integer> elementList;
Scanner scan = new Scanner(System.in);
int col = scan.nextInt();
scan.nextLine(); // get CR
while (col != 0) {
elementList = new LinkedList<Integer>();
// get value and number of the value
int value = scan.nextInt();
int num = scan.nextInt();
scan.nextLine(); // get CR
while (value != 0 && num != 0) {
for (int i = 0; i < num; i++) {
elementList.add(value);
}
// get value and number of the value
value = scan.nextInt();
num = scan.nextInt();
scan.nextLine(); // get CR
}
// create Matrix
Matrix matrix = new Matrix(col, elementList);
int [][] ret = matrix.getTarget();
/* test code
for (int i = 0; i < ret.length; i++) {
for (int j = 0; j < col; j++) {
System.out.println("test:ret[" + i + "][" + j + "]:" + ret[i][j]);
}
}*/
Matrix.printRLE(ret);
col = scan.nextInt();
scan.nextLine(); // get CR
}
}
public static void main(String[] args) {
Main m = new Main();
try {
m.run();
} catch (Exception e) {
e.printStackTrace();
}
}
}
class Matrix {
private int[][] original;
private int[][] target;
/**
* Initialize array original.
*/
public Matrix(int col, List<Integer> elementList) {
if ((elementList.size() % col) != 0) {
throw new IllegalArgumentException("Error input data");
}
int row = elementList.size() / col;
original = new int[row][col];
target = new int[row][col];
// prepare original array.
Iterator<Integer> iter = elementList.iterator();
int n = 0; // use to count the number of columns
while (iter.hasNext()) {
original[n/col][n%col] = iter.next();
n++;
}
// prepare target array.
calc(row, col);
}
public void calc(int row, int col) {
for (int r = 0; r < row; r++) {
for (int c = 0; c < col; c++) {
if (r - 1 > 0 && c + 1 < col) {
int v = original[r-1][c+1];
int detal = Math.abs(original[r][c] - v);
if (detal > target[r][c]) {
target[r][c] = detal;
}
if (detal > target[r-1][c+1]) {
target[r-1][c+1] = detal;
}
}
if (c + 1< col) {
int v = original[r][c+1];
int detal = Math.abs(original[r][c] - v);
if (detal > target[r][c]) {
target[r][c] = detal;
}
if (detal > target[r][c+1]) {
target[r][c+1] = detal;
}
}
if (r + 1 < row && c + 1 < col) {
int v = original[r+1][c+1];
int detal = Math.abs(original[r][c] - v);
if (detal > target[r][c]) {
target[r][c] = detal;
}
if (detal > target[r+1][c+1]) {
target[r+1][c+1] = detal;
}
}
if (r + 1 < row) {
int v = original[r+1][c];
int detal = Math.abs(original[r][c] - v);
if (detal > target[r][c]) {
target[r][c] = detal;
}
if (detal > target[r+1][c]) {
target[r+1][c] = detal;
}
}
if (r + 1 > row && c - 1 > 0) {
int v = original[r+1][c-1];
int detal = Math.abs(original[r][c] - v);
if (detal > target[r][c]) {
target[r][c] = detal;
}
if (detal > target[r+1][c-1]) {
target[r+1][c-1] = detal;
}
}
}
}
}
public static void printRLE(int[][] array) {
int old = array[0][0];
int count = 0;
for (int i = 0; i < array.length; i++) {
for (int j = 0; j < array[i].length; j++) {
int newOne = array[i][j];
if (old != newOne) {
System.out.println(old + " " + count);
old = newOne;
count = 1;
} else {
count++;
}
}
}
}
public int[][] getOriginal() {
return original;
}
public int[][] getTarget() {
return target;
}
}
分享到:
相关推荐
【压缩包子文件的文件名称列表】:"POJ1009-Edge Detection.cpp"、"POJ1009-Edge Detection.doc" "POJ1009-Edge Detection.cpp"是解决该问题的C++源代码文件,很可能包含了实现边缘检测算法的函数和主程序逻辑。...
poj1009 Edge Detection 可以直接AC的
poj 3222 Edge Pairing.md
【标题】"POJ-1009"是北大在线编程竞赛平台上的一个题目,它涉及到计算机科学中的算法和编程技巧。POJ(Problem Set of Peking University)是中国北京大学主办的一个在线编程竞赛平台,旨在提高学生的算法设计和...
标题“PKU_poj 1001~1009”揭示了这是一组与北京大学(Peking University)编程竞赛平台POJ相关的解决方案。在这个压缩包中,包含了从问题1001到1009的C++源代码,表明这些代码已经过验证并成功解决了对应的算法问题。...
【标题】"POJ.rar_poj java_poj1048" 涉及的知识点主要围绕编程竞赛中的“约瑟夫环”问题,这里是一个加强版,使用Java语言进行解决。 【描述】"POJ1048,加强版的约瑟夫问题 难度中等" 提示我们,这个问题是编程...
【标题】"POJ2002-Squares"是一个经典的计算机编程题目,源自北京大学的在线判题系统(POJ,即PKU Online Judge)。这个题目主要涉及到算法设计和实现,尤其是数学和动态规划方面的知识。 【描述】"解题报告+AC代码...
* 递推:递推是指通过前一个结果来计算当前结果的方法,如 poj1068、poj2632、poj1573、poj2993、poj2996。 * 构造法:构造法是指通过构造一个数据结构来解决问题的方法,如 poj3295。 * 模拟法:模拟法是指通过模拟...
poj习题第一题,很有意思,是学习poj的开始
【标签】"POJ 1159 Palindrome" 标签明确了这是关于回文的一个问题,回文是指正读反读都能读通的字符串,例如"madam"或"12321"。在编程中,回文的检测是字符串处理的基本操作,常常涉及字符串反转和比较。 **知识点...
这些题目是针对ACM竞赛(ACM International Collegiate Programming Contest,简称ICPC)中的编程训练,POJ(Problem Set for Online Judges)是一个在线的编程竞赛平台,提供了许多算法和逻辑思维的练习题目。...
标题“POJ3253-POJ3253-Fence Repair【STL优先队列】”指的是一个在线编程竞赛题目,源自北京大学的在线判题系统POJ(Problem Online Judge)。该题目要求参赛者使用C++编程语言解决特定的问题,并且在解决方案中...
POJ(Peking University Online Judge)是一个知名的在线编程评测平台,提供了大量的编程题目供用户练习。这些题目按照不同的算法和技术进行了分类,以便用户能够有针对性地进行学习和提高。 ### 一、算法: #### ...
【标题】"POJ1010-STAMPS"是一个编程题目,来源于北京大学的在线判题系统POJ(Problem Set of Peking University),这是一处训练程序员算法技能和编程能力的平台。该题目旨在考察参赛者对动态规划或贪心算法的理解...
【标题】"POJ1837-Balance"是一个在线编程竞赛题目,源自著名的编程练习平台POJ(Programming Online Judge)。这个题目旨在测试参赛者的算法设计和实现能力,特别是处理平衡问题的技巧。 【描述】"解题报告+AC代码...
单个的"poj"作为文件名,可能意味着压缩包内包含的是一个整体的文档或者一系列的子文件夹,每个子文件夹或文件可能对应着POJ平台上的一个具体习题。文件结构可能按照习题编号进行组织,方便用户查找和练习。内容可能...
标题中的"jihe.rar_2289_POJ 3714_poj3714_poj3714 Ra_visual c" 提到了一个压缩文件,可能包含有关编程竞赛或算法解决的资源,特别是与POJ(Problem On Judge)平台上的问题3714相关的。"Ra_visual c"可能指的是...
根据给定的文件信息,我们可以总结出一份详细的IT知识训练计划,主要针对编程竞赛和算法学习,特别是聚焦于POJ(Problem Online Judge)平台上的题目训练。这份计划分为两个阶段,初级阶段和中级阶段,共计涉及了165...
【标题】"POJ3041-Asteroids"是一个编程竞赛题目,源自北京大学的在线判题系统POJ(Problem Online Judge)。这个题目是编程竞赛的一部分,旨在测试参赛者的算法设计和编程能力。 【描述】"解题报告+AC代码"意味着...
POJ作为一个知名的在线编程平台,提供了大量的算法练习题,适合从初学者到高级选手的不同层次用户。下面,我们将根据给定的部分内容,深入探讨POJ上的题目分类以及相关的知识点。 ### 一、基本算法 #### 枚举 枚举...