Selaa lähdekoodia

Measuring time support

Marcelo Fornet 6 vuotta sitten
vanhempi
commit
cdb287a9ad
6 muutettua tiedostoa jossa 44 lisäystä ja 41 poistoa
  1. 8 19
      README.md
  2. BIN
      images/xkcd.png
  3. 20 6
      src/core.ts
  4. 2 2
      src/extension.ts
  5. 3 1
      src/types.ts
  6. 11 13
      todo.md

+ 8 - 19
README.md

@@ -1,10 +1,11 @@
-# ACM HELPER - README
+# ACMoon - README
 
-**ACMHelper** is tool that allow users to solve problems from several online judges easily. This extension contains awesome features powered with Machine Learning.
+**ACMoon** is tool that empower users to solve competitive programming problems easily.
 
 ## Features
 
-* Contest/Problem parsing
+* Contest/Problem parsing. Current sites supported:
+  * [Codeforces](http://codeforces.com)
 * Running solution against testcases automatically
 * Add custom testcases easily
 * Smart veredict reporting (OK, WA, RTE, TLE, CE)
@@ -15,9 +16,9 @@ Describe specific features of your extension including screenshots of your exten
 
 For example if there is an image subfolder under your extension project workspace:
 
-\!\[feature X\]\(images/feature-x.png\)
+![feature X](images/xkcd.png)
 
-> Tip: Many popular extensions utilize animations. This is an excellent way to show off your extension! We recommend short, focused animations that are easy to follow.
+> Tip: This is a TIP
 
 ## Requirements
 
@@ -34,25 +35,13 @@ This extension contributes the following settings:
 * `myExtension.enable`: enable/disable this extension
 * `myExtension.thing`: set to `blah` to do something
 
-## Known Issues
-
-Calling out known issues can help limit users opening duplicate issues against your extension.
-
 ## Release Notes
 
 Users appreciate release notes as you update your extension.
 
-### 1.0.0
-
-Initial release of ...
-
-### 1.0.1
-
-Fixed issue #.
-
-### 1.1.0
+### 0.1.0
 
-Added features X, Y, and Z.
+First release of **ACMoon**
 
 -----------------------------------------------------------------------------------------------------------
 

BIN
images/xkcd.png


+ 20 - 6
src/core.ts

@@ -272,7 +272,7 @@ export function testSolution(path: string){
     let xresult = compileCode(sol, out);
 
     if (xresult.status !== 0){
-        return new SolutionResult(Veredict.CE);
+        throw new Error("Compilation Error. sol.cpp");
     }
 
     let testcasesId = testcasesName(path);
@@ -288,7 +288,7 @@ export function testSolution(path: string){
         testcasesId = testcasesId.reverse();
     }
 
-    let results = [];
+    let results: TestcaseResult[] = [];
     let fail: SolutionResult | undefined = undefined;
 
     testcasesId.forEach(tcId => {
@@ -305,8 +305,15 @@ export function testSolution(path: string){
     });
 
     if (fail === undefined){
+        let maxTime = 0;
+        for (let i = 0; i < results.length; i++){
+            if (results[i].spanTime! > maxTime){
+                maxTime = results[i].spanTime!;
+            }
+        }
+
         // TODO: 003
-        return new SolutionResult(Veredict.OK);
+        return new SolutionResult(Veredict.OK, undefined, maxTime);
     }
     else{
         return fail;
@@ -347,7 +354,7 @@ export function stressSolution(path: string, times: number = 10){
         throw new Error("Compilation Error. brute.cpp");
     }
 
-    let history = [];
+    let results = [];
 
     for (let index = 0; index < times; index++) {
         // Generate input testcase
@@ -378,10 +385,17 @@ export function stressSolution(path: string, times: number = 10){
             return new SolutionResult(result.status, 'gen');
         }
 
-        history.push(result);
+        results.push(result);
+    }
+
+    let maxTime = 0;
+    for (let i = 0; i < results.length; i++){
+        if (results[i].spanTime! > maxTime){
+            maxTime = results[i].spanTime!;
+        }
     }
 
-    return new SolutionResult(Veredict.OK);
+    return new SolutionResult(Veredict.OK, undefined, maxTime);
 }
 
 export function veredictName(veredict: Veredict){

+ 2 - 2
src/extension.ts

@@ -144,7 +144,7 @@ async function runSolution(){
     let result = testSolution(path);
 
     if (result.status === Veredict.OK){
-        vscode.window.showInformationMessage("OK");
+        vscode.window.showInformationMessage(`OK. Time ${result.maxTime!}ms`);
     }
     else{
         vscode.window.showErrorMessage(`${veredictName(result.status)} on test ${result.failTcId}`);
@@ -237,7 +237,7 @@ async function stress(){
     let result = stressSolution(path);
 
     if (result.status === Veredict.OK){
-        vscode.window.showInformationMessage("OK");
+        vscode.window.showInformationMessage(`OK. Time ${result.maxTime!}ms`);
     }
     else{
         vscode.window.showErrorMessage(`${veredictName(result.status)} on test ${result.failTcId}`);

+ 3 - 1
src/types.ts

@@ -19,10 +19,12 @@ export class TestcaseResult{
 export class SolutionResult{
     status: Veredict;
     failTcId?: string;
+    maxTime?: number;
 
-    constructor(status: Veredict, failTcId?: string){
+    constructor(status: Veredict, failTcId?: string, maxTime?: number){
         this.status = status;
         this.failTcId = failTcId;
+        this.maxTime = maxTime;
     }
 }
 

+ 11 - 13
todo.md

@@ -1,29 +1,27 @@
 # List of TODO
 
-* **IMPORTANT** When Compilation Error throw a better error. (maybe with runtime error too)
-* Add How to Use (in the README.) adding own template etc...
+* Refactor Code!!
+* Add How to Use (in the README.) How to add own template etc...
+* **NEXT** Create custom settings. Add (TimeLimit, Checker)
 * Allow custom checker easily
 * Add several checkers and try to infer which is the correct! [*]
-* Smart ID detection while parsing ContestId & ProblemId [*]
-* Smart generator [*]
+* **PARSING** Smart ID detection while parsing ContestId & ProblemId [*]
+* **NEXT** Smart generator [*]
 * Find great name/slogan!!! other than acmhelper Competitive Programming made simple
 * Implement parser for codeforces to test on real cases
-* Learn how to move static files from `src` to `out`.
+* **INTERNET** Learn how to move static files from `src` to `out`.
 * Allow programming in other languages than c++
-* Refactor Code!!
-* When Runtime Error happens show as much output as possible and display the error in the console
 * Figure out something for interactive problems.
-* When a new view is activated (after run or view:code) close all open tabs. (maybe collapse everything not related to the problem)
+* **IMPORTANT** When a new view is activated (after run or view:code) close all open tabs. (also (maybe) collapse everything not related to the problem)
+* Allow stopping a running program (such as sol.cpp/brute.cpp/gen.py/etc...)
 
 * [001](/src/core.ts): Revisit this constant. Show specific error to know when this is an issue
 * [002](/src/core.ts): Avoid this hardcoded line. Use personalized compile line. increase stack by default. This involve allowing different languages
-* [003](/src/core.ts): **IMPORTANT** Report max time and maybe other stats. (TestSolution, Stress)
 * [004](/src/core.ts): **NILOX** Revisit this call to python3. How to make it cross platform
 * [005](/src/core.ts): Restrict brute in time, and capture errors
-* [006](/src/extension.ts): **IMPORTANT** Provide custom problem id example in placeholder per different site
+* [006](/src/extension.ts): **PARSING** Provide custom problem and contest id example in placeholder per different site
 * [007](/src/extension.ts): How can I have access to new proccess created using `openFolder`?
-* [008](/src/extension.ts): **IMPORTANT** Provide custom contest id example in placeholder per different site
-* [009](/src/parsers/codeforces.ts): Use sync requests
-* [010](/src/test/extension.test.ts): How to check if two arrays are equal
+* [009](/src/parsers/codeforces.ts): **INTERNET** Use sync requests
+* [010](/src/test/extension.test.ts): **NILOX** **INTERNET** How to check if two arrays are equal
 
 [*] Machine Learning?