Search found 5 matches

by wittgens
Mon Jul 28, 2003 9:01 am
Forum: Volume 1 (100-199)
Topic: 102 - Ecological Bin Packing
Replies: 485
Views: 117400

oh~ thank you very much

^^*
by wittgens
Sun Jul 27, 2003 6:46 am
Forum: Volume 1 (100-199)
Topic: 102 - Ecological Bin Packing
Replies: 485
Views: 117400

but both BGC and BCG are same

BGC 30
bin 1 : 11
bin 2 : 10
bin 3 : 9

BCG 30
bin 1 : 11
bin 2 : 12
bin 3 : 7

------------------

therefore, are both 'BGC 30' and 'BCG 30' all right?
by wittgens
Sat Jul 26, 2003 5:56 pm
Forum: Volume 1 (100-199)
Topic: 102 - Ecological Bin Packing
Replies: 485
Views: 117400

[help] 102 why WA?

[cpp]
/* @JUDGE_ID: 33655HX 102 C++ */
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;

#ifndef _BINPACKING_H_
#define _BINPACKING_H_
class BinPacking
{
private:
vector<int> color;
vector<int> input_data;
int min_number;
public:
BinPacking();
~BinPacking();
void ...
by wittgens
Mon Jul 21, 2003 8:49 am
Forum: Volume 1 (100-199)
Topic: 101 - The Blocks Problem
Replies: 635
Views: 110355

give me more complex examples

I have many time tested by this source, but I got WA..
I don't know why~
please, give me more complex examples for testing.
by wittgens
Wed Jul 16, 2003 7:04 am
Forum: Volume 1 (100-199)
Topic: 101 - The Blocks Problem
Replies: 635
Views: 110355

101 I don't know why is WA?

my source is following statements.
but, I got a Wrong Answer..
I don't know why.
please, tell me why~
^^*
[cpp]
#include<iostream>
#include<vector>
using namespace std;

int move_onto(vector<int> *block, int n, int a, int b)
{
vector<int>::iterator vi1, vi2;
int i, j;
for(i=0; i<n; i++)
for(vi1 ...

Go to advanced search